//------------------------------------------------------------------------------ // // Этот код создан по шаблону. // // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения. // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода. // //------------------------------------------------------------------------------ namespace DontHarmDesktop.Models { using System; using System.Collections.Generic; public partial class clients { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public clients() { this.invoices = new HashSet(); this.orders = new HashSet(); } public int id { get; set; } public int type { get; set; } public string login { get; set; } public string password { get; set; } public string surname { get; set; } public string name { get; set; } public string patronymic { get; set; } public Nullable birthdate { get; set; } public Nullable passport_series { get; set; } public Nullable passport_number { get; set; } public string phone { get; set; } public string email { get; set; } public string company_name { get; set; } public string company_address { get; set; } public int inn { get; set; } public int account { get; set; } public int bik { get; set; } public bool hidden { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection invoices { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection orders { get; set; } } }