using System; using System.Collections.Generic; namespace rockfishCore.Models { public partial class Customer { public Customer() { //Contact = new HashSet(); // Incident = new HashSet(); // Notification = new HashSet(); Purchase = new HashSet(); Site = new HashSet(); // Trial = new HashSet(); } public long Id { get; set; } public string Name { get; set; } public string Country { get; set; } public string StateProvince { get; set; } public string AffiliateNumber { get; set; } public bool DoNotContact { get; set; } public string Notes { get; set; } public bool Active { get; set; } public string SupportEmail { get; set; } public string AdminEmail { get; set; } // public virtual ICollection Contact { get; set; } // public virtual ICollection Incident { get; set; } // public virtual ICollection Notification { get; set; } public virtual ICollection Purchase { get; set; } public virtual ICollection Site { get; set; } // public virtual ICollection Trial { get; set; } } }