2015-04-15 18:32:56 +00:00
|
|
|
|
///
|
2021-05-27 15:30:04 +00:00
|
|
|
|
/// Copyright (c) 2013-2021 Sensus Slovensko a.s.
|
2015-04-15 18:32:56 +00:00
|
|
|
|
///
|
|
|
|
|
|
using FluentNHibernate.Mapping;
|
2015-12-04 16:17:20 +00:00
|
|
|
|
using Config.Entities;
|
2014-07-28 07:54:35 +00:00
|
|
|
|
|
2015-12-04 16:17:20 +00:00
|
|
|
|
namespace Config.Mappings
|
2014-07-28 07:54:35 +00:00
|
|
|
|
{
|
2021-05-27 15:30:04 +00:00
|
|
|
|
class MeasurementCorrectionMap : ClassMap<Entities.MeasurementCorrection>
|
2014-07-28 07:54:35 +00:00
|
|
|
|
{
|
|
|
|
|
|
public MeasurementCorrectionMap()
|
|
|
|
|
|
{
|
|
|
|
|
|
Id(x => x.Id);
|
2018-01-24 13:16:38 +00:00
|
|
|
|
Map(x => x.RangeIx);
|
2014-07-28 07:54:35 +00:00
|
|
|
|
Map(x => x.Measurement);
|
|
|
|
|
|
Map(x => x.Correction);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|