using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Sleis.Models { public class AgencyFacilityModel : FacilityModel { //public virtual int IsMasterIndicator { get; set; } public virtual bool IsMaster { get; set; } public virtual int? AgencyReportId { get; set; } public virtual int? PrimarySic { get; set; } public virtual List Comments {get; set;} public virtual IListIdentifiers { get; set; } public virtual IList AgencyReports { get; set; } public virtual IList AlternateNames { get; set; } public AgencyFacilityModel() { Location = new GeographicLocation(); Comments = new List(); //Identifiers = new List(); AlternateNames = new List(); SiteAddress = new AgencyFacilitySiteAddress(); MailAddress = new AgencyFacilityMailAddress(); } } }