//------------------------------------------------------------------------------ // // Этот код создан по шаблону. // // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения. // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода. // //------------------------------------------------------------------------------ namespace Детский_сад { using System; using System.Collections.Generic; public partial class Employees { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public Employees() { this.Distributions = new HashSet(); this.Photos = new HashSet(); } public int Id_employee { get; set; } public string Surname { get; set; } public string Names { get; set; } public string Patronymic { get; set; } public System.DateTime Birthdate { get; set; } public int Id_gender { get; set; } public int Id_position { get; set; } public string Street { get; set; } public string Building { get; set; } public string Phone { get; set; } public string Login_user { get; set; } public int Password_user { get; set; } public int Id_role { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection Distributions { get; set; } public virtual Genders Genders { get; set; } public virtual Positions Positions { get; set; } public virtual Roles Roles { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection Photos { get; set; } } }