public CalendarEventsController(EmployeeCalendarAPIContext context)
 {
     calendarEventRepository = new CalendarEventRepository(context);
     employeeRepository      = new EmployeeRepository(context);
 }
 public EmployeeRepository(EmployeeCalendarAPIContext context)
 {
     _context = context;
 }
Пример #3
0
 public EmployeesController(EmployeeCalendarAPIContext context)
 {
     employeeRepository = new EmployeeRepository(context);
 }
 public CalendarEventTypeRepository(EmployeeCalendarAPIContext context)
 {
     _context = context;
 }