User.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // Этот код создан по шаблону.
  4. //
  5. // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
  6. // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace PP_Ven_MosS.ModelBase
  10. {
  11. using System;
  12. using System.Collections.Generic;
  13. public partial class User
  14. {
  15. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
  16. public User()
  17. {
  18. this.Applications = new HashSet<Applications>();
  19. this.Event = new HashSet<Event>();
  20. }
  21. public int Id_user { get; set; }
  22. public string Surname { get; set; }
  23. public string Name { get; set; }
  24. public string Patronymic { get; set; }
  25. public string Post { get; set; }
  26. public string Phone_number { get; set; }
  27. public string Login { get; set; }
  28. public string Password { get; set; }
  29. public int Id_role { get; set; }
  30. public Nullable<int> Count_complete_app { get; set; }
  31. public Nullable<int> Count_complete_event { get; set; }
  32. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
  33. public virtual ICollection<Applications> Applications { get; set; }
  34. public virtual Role Role { get; set; }
  35. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
  36. public virtual ICollection<Event> Event { get; set; }
  37. }
  38. }