//------------------------------------------------------------------------------ // // Этот код создан по шаблону. // // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения. // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода. // //------------------------------------------------------------------------------ namespace Met_Fam { using System; using System.Collections.Generic; public partial class Goods { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public Goods() { this.Buying_Goods = new HashSet(); this.Videos = new HashSet(); } public int ID_Goods { get; set; } public string Title_Goods { get; set; } public int ID_Type_Goods { get; set; } public int Price_Goods { get; set; } public string Picture { get; set; } public string Description { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection Buying_Goods { get; set; } public virtual Type_Goods Type_Goods { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection Videos { get; set; } } }