public EmployeeRepository(EmployeesAndVacationsModelsDataContext dbContext)
 {
     this.dbContext = dbContext;
 }
Beispiel #2
0
 public BusinessUnitRepository(EmployeesAndVacationsModelsDataContext dbContext)
 {
     this.dbContext = dbContext;
 }
 public EmployeeRepository()
 {
     this.dbContext = new EmployeesAndVacationsModelsDataContext();
 }
Beispiel #4
0
 public BusinessUnitRepository()
 {
     this.dbContext = new EmployeesAndVacationsModelsDataContext();
 }