/// /// Copyright (c) 2016 Sensus Metering Systems /// using FluentNHibernate.Mapping; using Results.Entities; namespace Results.Mappings { class ComponentsMap : ClassMap { public ComponentsMap() { Id(x => x.Id); Map(x => x.TestBenchId); Map(x => x.TestBenchName); Map(x => x.Pump); Map(x => x.RegValve); Map(x => x.Flowmeter); Map(x => x.Diverter); Map(x => x.Scale); Map(x => x.Custom1); Map(x => x.Custom2); Map(x => x.Custom3); } } }