23 lines
517 B
C#
23 lines
517 B
C#
///
|
|
/// Copyright (c) 2019 Sensus Slovensko a.s.
|
|
///
|
|
using FluentNHibernate.Mapping;
|
|
using Config.Entities;
|
|
|
|
namespace Config.Mappings
|
|
{
|
|
class UncertaintyMap : ClassMap<Uncertainty>
|
|
{
|
|
public UncertaintyMap()
|
|
{
|
|
Id(x => x.Id);
|
|
Map(x => x.Measurement);
|
|
Map(x => x.MainUncertainty);
|
|
Map(x => x.Resolution);
|
|
Map(x => x.DriftPerYr);
|
|
Map(x => x.Conditions);
|
|
Map(x => x.UncertaintyOfCorrection);
|
|
}
|
|
}
|
|
}
|