using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Sleis.Models { public class AgencyReleasePoint : ReleasePoint { public virtual IList Identifiers { get; set; } public virtual IList MasterRecordComments { get; set; } public virtual bool IsMaster { get { if (Facility != null && Facility is AgencyFacilityModel) { return ((AgencyFacilityModel)Facility).IsMaster; } return false; } } public AgencyReleasePoint() : base() { MasterRecordComments = new List(); Identifiers = new List(); } } }