using System; using System.Collections.Generic; namespace Cicm.Database.Models { public class Companies { public Companies() { CompanyLogos = new HashSet(); Gpus = new HashSet(); InverseSoldToNavigation = new HashSet(); MachineFamilies = new HashSet(); Machines = new HashSet(); Processors = new HashSet(); SoundSynths = new HashSet(); } public int Id { get; set; } public string Name { get; set; } public DateTime? Founded { get; set; } public string Website { get; set; } public string Twitter { get; set; } public string Facebook { get; set; } public DateTime? Sold { get; set; } public int? SoldToId { get; set; } public string Address { get; set; } public string City { get; set; } public string Province { get; set; } public string PostalCode { get; set; } public short? CountryId { get; set; } public CompanyStatus Status { get; set; } public Iso31661Numeric Country { get; set; } public Companies SoldTo { get; set; } public CompanyDescriptions Description { get; set; } public ICollection CompanyLogos { get; set; } public ICollection Gpus { get; set; } public ICollection InverseSoldToNavigation { get; set; } public ICollection MachineFamilies { get; set; } public ICollection Machines { get; set; } public ICollection Processors { get; set; } public ICollection SoundSynths { get; set; } } }