//------------------------------------------------------------------------------ // // Этот код создан по шаблону. // // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения. // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода. // //------------------------------------------------------------------------------ namespace KadroviYshot { using System; using System.Collections.Generic; public partial class Employees { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public Employees() { this.Childrens = new HashSet(); this.OrdersDismissal = new HashSet(); this.OrdersEmployment = new HashSet(); } public int IdEmployee { get; set; } public string Surname { get; set; } public string Name { get; set; } public string Otchestvo { get; set; } public Nullable DateBirth { get; set; } public Nullable IdDolzhnost { get; set; } public Nullable IdFamilyStatus { get; set; } public string AddressResidence { get; set; } public string Telephone { get; set; } public Nullable DateReceipt { get; set; } public Nullable IdEducation { get; set; } public Nullable IdChildren { get; set; } public Nullable IdMilitaryDuty { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection Childrens { get; set; } public virtual Dolzhnosts Dolzhnosts { get; set; } public virtual Educations Educations { get; set; } public virtual FamilyStatuses FamilyStatuses { get; set; } public virtual MilitaryDuties MilitaryDuties { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection OrdersDismissal { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection OrdersEmployment { get; set; } } }