//------------------------------------------------------------------------------ // // Этот код создан по шаблону. // // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения. // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода. // //------------------------------------------------------------------------------ namespace PP_Ven_MosS.ModelBase { using System; using System.Collections.Generic; public partial class User { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public User() { this.Applications = new HashSet(); this.Event = new HashSet(); } public int Id_user { get; set; } public string Surname { get; set; } public string Name { get; set; } public string Patronymic { get; set; } public string Post { get; set; } public string Phone_number { get; set; } public string Login { get; set; } public string Password { get; set; } public int Id_role { get; set; } public Nullable Count_complete_app { get; set; } public Nullable Count_complete_event { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection Applications { get; set; } public virtual Role Role { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection Event { get; set; } } }