Пример #1
0
 public EmployeeController(IUserRepo dbUser, INotification dbNotify,
                           ITeamLead dbTeamLeads, IEmployee dbEmployees, IEmployeeEnrollments dbEEmployeeEnrollments)
 {
     _dbUser                = dbUser;
     _dbNotify              = dbNotify;
     _dbTeamLeads           = dbTeamLeads;
     _dbEmployees           = dbEmployees;
     _dbEmployeeEnrollments = dbEEmployeeEnrollments;
 }
Пример #2
0
 public EmployeeProfilesController(IUserRepo dbUser, INotification dbNotify,
                                   IProject dbProjects, IAbsenceTypeRepo dbAbsencesType, IRealization dbRealizations, IAbsence dbAbsences, ITeamLead dbTeamLeads, IEmployee dbEmployees, IEmployeeEnrollments dbEEmployeeEnrollments)
 {
     _dbUser                = dbUser;
     _dbNotify              = dbNotify;
     _dbTeamLeads           = dbTeamLeads;
     _dbEmployees           = dbEmployees;
     _dbEmployeeEnrollments = dbEEmployeeEnrollments;
     _dbRealizations        = dbRealizations;
     _dbProjects            = dbProjects;
     _dbAbsences            = dbAbsences;
     _dbAbsencesType        = dbAbsencesType;
 }