123456789101112131415161718192021222324252627282930313233343536373839 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // Этот код создан по шаблону.
- //
- // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
- // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace KadroviYshot
- {
- using System;
- using System.Collections.Generic;
-
- public partial class MilitaryDuties
- {
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public MilitaryDuties()
- {
- this.Employees = new HashSet<Employees>();
- }
-
- public int IdMilitaryDuty { get; set; }
- public Nullable<int> MilitaryIdNumber { get; set; }
- public string AccountingGroup { get; set; }
- public string MilitaryRank { get; set; }
- public string Profile { get; set; }
- public string ReserveRank { get; set; }
- public Nullable<System.DateTime> DateReceipt { get; set; }
- public Nullable<System.DateTime> DateWithdrawal { get; set; }
- public string Base { get; set; }
- public Nullable<bool> SpecialAccount { get; set; }
- public Nullable<int> MilitaryRegistrationNumber { get; set; }
- public Nullable<int> MilitaryPositionCode { get; set; }
-
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<Employees> Employees { get; set; }
- }
- }
|