1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // Этот код создан по шаблону.
- //
- // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
- // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace kursach_2._0
- {
- using System;
- using System.Collections.Generic;
-
- public partial class employees
- {
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public employees()
- {
- this.invoices = new HashSet<invoices>();
- }
-
- public int id_employee { get; set; }
- public string last_name { get; set; }
- public string first_name { get; set; }
- public string middle_name { get; set; }
- public string login { get; set; }
- public string password { get; set; }
- public string gender { get; set; }
- public Nullable<System.DateTime> birthdate { get; set; }
- public string post { get; set; }
- public Nullable<decimal> salary { get; set; }
- public string phone { get; set; }
- public string email { get; set; }
- public string address { get; set; }
- public string passport { get; set; }
-
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<invoices> invoices { get; set; }
- }
- }
|