public EmployerController(UserManager <IdentityUser> userManager, IShiftCollection shiftCollection, IScheduleCollection scheduleCollection, ICompanyHandler companyHandler)
 {
     _userManager        = userManager;
     _shiftCollection    = shiftCollection;
     _scheduleCollection = scheduleCollection;
     _companyHandler     = companyHandler;
 }
示例#2
0
 public EmployeeController(IShiftCollection shiftCollection, IScheduleCollection scheduleCollection, ICompanyHandler companyHandler)
 {
     _shiftCollection    = shiftCollection;
     _scheduleCollection = scheduleCollection;
     _companyHandler     = companyHandler;
 }