//------------------------------------------------------------------------------ // // Этот код создан по шаблону. // // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения. // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода. // //------------------------------------------------------------------------------ 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(); } public int IdMilitaryDuty { get; set; } public Nullable 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 DateReceipt { get; set; } public Nullable DateWithdrawal { get; set; } public string Base { get; set; } public Nullable SpecialAccount { get; set; } public Nullable MilitaryRegistrationNumber { get; set; } public Nullable MilitaryPositionCode { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection Employees { get; set; } } }