public TimeSheetController(IWorkDayRepo timeSheetService, IDepartmentRepo departmentRepo, UserManager <ApplicationUser> userManager, RoleManager <IdentityRole> roleManager, ISupervisorRepo supervisorRepo) { _userManager = userManager; _roleManager = roleManager; _supervisorRepo = supervisorRepo; _timeSheetService = timeSheetService; _departmentRepo = departmentRepo; }
public SignInController(IWorkDayRepo timeSheetService, UserManager <ApplicationUser> userManager) { _timeSheetService = timeSheetService; _userManager = userManager; }