MilitaryDuties.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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 MilitaryDuties
  14. {
  15. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
  16. public MilitaryDuties()
  17. {
  18. this.Employees = new HashSet<Employees>();
  19. }
  20. public int IdMilitaryDuty { get; set; }
  21. public Nullable<int> MilitaryIdNumber { get; set; }
  22. public string AccountingGroup { get; set; }
  23. public string MilitaryRank { get; set; }
  24. public string Profile { get; set; }
  25. public string ReserveRank { get; set; }
  26. public Nullable<System.DateTime> DateReceipt { get; set; }
  27. public Nullable<System.DateTime> DateWithdrawal { get; set; }
  28. public string Base { get; set; }
  29. public Nullable<bool> SpecialAccount { get; set; }
  30. public Nullable<int> MilitaryRegistrationNumber { get; set; }
  31. public Nullable<int> MilitaryPositionCode { get; set; }
  32. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
  33. public virtual ICollection<Employees> Employees { get; set; }
  34. }
  35. }