-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmployee.cs
41 lines (37 loc) · 1.45 KB
/
Employee.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
using System;
using System.Collections.Generic;
#nullable disable
namespace NorthwindDBAPI
{
public partial class Employee
{
public Employee()
{
EmployeeTerritories = new HashSet<EmployeeTerritory>();
InverseReportsToNavigation = new HashSet<Employee>();
Orders = new HashSet<Order>();
}
public int EmployeeId { get; set; }
public string LastName { get; set; }
public string FirstName { get; set; }
public string Title { get; set; }
public string TitleOfCourtesy { get; set; }
public DateTime? BirthDate { get; set; }
public DateTime? HireDate { get; set; }
public string Address { get; set; }
public string City { get; set; }
public string Region { get; set; }
public string PostalCode { get; set; }
public string Country { get; set; }
public string HomePhone { get; set; }
public string Extension { get; set; }
public byte[] Photo { get; set; }
public string Notes { get; set; }
public int? ReportsTo { get; set; }
public string PhotoPath { get; set; }
public virtual Employee ReportsToNavigation { get; set; }
public virtual ICollection<EmployeeTerritory> EmployeeTerritories { get; set; }
public virtual ICollection<Employee> InverseReportsToNavigation { get; set; }
public virtual ICollection<Order> Orders { get; set; }
}
}