Employees.cs 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // Этот код создан по шаблону.
  4. //
  5. // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
  6. // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace KadroviYshot
  10. {
  11. using System;
  12. using System.Collections.Generic;
  13. public partial class Employees
  14. {
  15. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
  16. public Employees()
  17. {
  18. this.Childrens = new HashSet<Childrens>();
  19. this.OrdersDismissal = new HashSet<OrdersDismissal>();
  20. this.OrdersEmployment = new HashSet<OrdersEmployment>();
  21. }
  22. public int IdEmployee { get; set; }
  23. public string Surname { get; set; }
  24. public string Name { get; set; }
  25. public string Otchestvo { get; set; }
  26. public Nullable<System.DateTime> DateBirth { get; set; }
  27. public Nullable<int> IdDolzhnost { get; set; }
  28. public Nullable<int> IdFamilyStatus { get; set; }
  29. public string AddressResidence { get; set; }
  30. public string Telephone { get; set; }
  31. public Nullable<System.DateTime> DateReceipt { get; set; }
  32. public Nullable<int> IdEducation { get; set; }
  33. public Nullable<int> IdChildren { get; set; }
  34. public Nullable<int> IdMilitaryDuty { get; set; }
  35. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
  36. public virtual ICollection<Childrens> Childrens { get; set; }
  37. public virtual Dolzhnosts Dolzhnosts { get; set; }
  38. public virtual Educations Educations { get; set; }
  39. public virtual FamilyStatuses FamilyStatuses { get; set; }
  40. public virtual MilitaryDuties MilitaryDuties { get; set; }
  41. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
  42. public virtual ICollection<OrdersDismissal> OrdersDismissal { get; set; }
  43. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
  44. public virtual ICollection<OrdersEmployment> OrdersEmployment { get; set; }
  45. }
  46. }