123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // Этот код создан по шаблону.
- //
- // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
- // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace PP_Ven_MosS.ModelBase
- {
- using System;
- using System.Collections.Generic;
-
- public partial class User
- {
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public User()
- {
- this.Applications = new HashSet<Applications>();
- this.Event = new HashSet<Event>();
- }
-
- public int Id_user { get; set; }
- public string Surname { get; set; }
- public string Name { get; set; }
- public string Patronymic { get; set; }
- public string Post { get; set; }
- public string Phone_number { get; set; }
- public string Login { get; set; }
- public string Password { get; set; }
- public int Id_role { get; set; }
- public Nullable<int> Count_complete_app { get; set; }
- public Nullable<int> Count_complete_event { get; set; }
-
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<Applications> Applications { get; set; }
- public virtual Role Role { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<Event> Event { get; set; }
- }
- }
|