//------------------------------------------------------------------------------ // // Этот код создан по шаблону. // // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения. // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода. // //------------------------------------------------------------------------------ namespace Met_Fam { using System; using System.Collections.Generic; public partial class User { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public User() { this.Buying_Goods = new HashSet(); this.Videos = new HashSet(); } public int ID_User { get; set; } public string Surname_User { get; set; } public string Name_User { get; set; } public string Login_User { get; set; } public string Password_User { get; set; } public string Phone_User { get; set; } public int ID_Role { get; set; } public string Address { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection Buying_Goods { get; set; } public virtual Role Role { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection Videos { get; set; } public virtual Position Position { get; set; } } }