//------------------------------------------------------------------------------ // // Этот код создан по шаблону. // // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения. // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода. // //------------------------------------------------------------------------------ namespace Learn { using System; using System.Collections.Generic; public partial class ClientService { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public ClientService() { this.DocumentByService = new HashSet(); this.ProductSale = new HashSet(); } public int ID { get; set; } public int ClientID { get; set; } public int ServiceID { get; set; } public System.DateTime StartTime { get; set; } public string Comment { get; set; } public virtual Client Client { get; set; } public virtual Service Service { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection DocumentByService { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection ProductSale { get; set; } } }