using System; using System.Collections.Generic; namespace MapsDb.Models { public partial class DepartmentAffiliation { public DepartmentAffiliation() { ServiceObject = new HashSet(); } public int DepartmentAffiliationId { get; set; } public string Name { get; set; } public virtual ICollection ServiceObject { get; set; } } }