public EmployerController(UserManager <IdentityUser> userManager, IShiftCollection shiftCollection, IScheduleCollection scheduleCollection, ICompanyHandler companyHandler)
 {
     _userManager        = userManager;
     _shiftCollection    = shiftCollection;
     _scheduleCollection = scheduleCollection;
     _companyHandler     = companyHandler;
 }
Example #2
0
 public EmployeeController(IShiftCollection shiftCollection, IScheduleCollection scheduleCollection, ICompanyHandler companyHandler)
 {
     _shiftCollection    = shiftCollection;
     _scheduleCollection = scheduleCollection;
     _companyHandler     = companyHandler;
 }
 public ScheduleDomain(IScheduleCollection scheduleCollection, ISessionsCollection sessionsCollection)
 {
     this.scheduleCollection = scheduleCollection;
     this.sessionsCollection = sessionsCollection;
 }