19 lines
338 B
C#
19 lines
338 B
C#
///
|
|
/// Copyright (c) 2013-2015 Sensus Metering Systems
|
|
///
|
|
using FluentNHibernate.Mapping;
|
|
using Config.Entities;
|
|
|
|
namespace Config.Mappings
|
|
{
|
|
class MeasurementCorrectionMap : ClassMap<MeasurementCorrection>
|
|
{
|
|
public MeasurementCorrectionMap()
|
|
{
|
|
Id(x => x.Id);
|
|
Map(x => x.Measurement);
|
|
Map(x => x.Correction);
|
|
}
|
|
}
|
|
}
|