using System; using System.Collections.Generic; using System.Linq; using System.Web; using Sleis.Models; namespace Sleis.Mapping { public class AgencyReleasePointCommentMap : CommentMap { public AgencyReleasePointCommentMap() { Table("M_REL_PT_CMNT"); Id(x => x.Id).Column("REL_PT_CMNT_ID"); Map(x => x.ReleasePointId).Column("REL_PT_ID"); } } }