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