Employees.cs 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // Этот код создан по шаблону.
  4. //
  5. // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
  6. // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace Детский_сад
  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.Distributions = new HashSet<Distributions>();
  19. this.Photos = new HashSet<Photos>();
  20. }
  21. public int Id_employee { get; set; }
  22. public string Surname { get; set; }
  23. public string Names { get; set; }
  24. public string Patronymic { get; set; }
  25. public System.DateTime Birthdate { get; set; }
  26. public int Id_gender { get; set; }
  27. public int Id_position { get; set; }
  28. public string Street { get; set; }
  29. public string Building { get; set; }
  30. public string Phone { get; set; }
  31. public string Login_user { get; set; }
  32. public int Password_user { get; set; }
  33. public int Id_role { get; set; }
  34. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
  35. public virtual ICollection<Distributions> Distributions { get; set; }
  36. public virtual Genders Genders { get; set; }
  37. public virtual Positions Positions { get; set; }
  38. public virtual Roles Roles { get; set; }
  39. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
  40. public virtual ICollection<Photos> Photos { get; set; }
  41. }
  42. }