tbf/TestBenchFramework/Mappings/MeasurementCorrectionMap.cs
2015-04-15 20:32:56 +02:00

19 lines
332 B
C#

///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
using FluentNHibernate.Mapping;
using TBF.Entities;
namespace TBF.Mappings
{
class MeasurementCorrectionMap : ClassMap<MeasurementCorrection>
{
public MeasurementCorrectionMap()
{
Id(x => x.Id);
Map(x => x.Measurement);
Map(x => x.Correction);
}
}
}