using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using Sleis.Models.CustomFields; using FluentNHibernate.Mapping; namespace Sleis.Mapping { public class ProcessEmissionCustomFieldViewMap : ClassMap { public ProcessEmissionCustomFieldViewMap() { Table("P_RPT_PRD_CSTM_FLD_VAL"); Id(x => x.Id).Column("RPT_PRD_CSTM_FLD_VAL_ID"); Map(x => x.EntityId).Column("RPT_PRD_ID"); Component(x => x.FieldValue); } } }