12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // Этот код создан по шаблону.
- //
- // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
- // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace ProjectAnalogParus
- {
- using System;
- using System.Collections.Generic;
-
- public partial class Employee
- {
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public Employee()
- {
- this.ActualHoursWorked = new HashSet<ActualHoursWorked>();
- this.Experience = new HashSet<Experience>();
- this.GeneralCharges = new HashSet<GeneralCharges>();
- this.Payroll = new HashSet<Payroll>();
- this.RequisitesForTransfers = new HashSet<RequisitesForTransfers>();
- this.WageFund = new HashSet<WageFund>();
- }
-
- public int IdEmployee { get; set; }
- public string LastName { get; set; }
- public string FirstName { get; set; }
- public string MiddleName { get; set; }
- public string PersonnelNumber { get; set; }
- public int PositionId { get; set; }
- public System.DateTime DateOfReceipt { get; set; }
- public Nullable<System.DateTime> DateOfdismissal { get; set; }
- public int CategoryPayerId { get; set; }
- public int SubdivisionId { get; set; }
- public int GenderId { get; set; }
- public string INN { get; set; }
- public int HirerId { get; set; }
- public System.DateTime Birthday { get; set; }
-
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<ActualHoursWorked> ActualHoursWorked { get; set; }
- public virtual CategoryPayer CategoryPayer { get; set; }
- public virtual Gender Gender { get; set; }
- public virtual Hirer Hirer { get; set; }
- public virtual Position Position { get; set; }
- public virtual Subdivision Subdivision { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<Experience> Experience { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<GeneralCharges> GeneralCharges { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<Payroll> Payroll { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<RequisitesForTransfers> RequisitesForTransfers { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<WageFund> WageFund { get; set; }
- }
- }
|