Ejemplo n.º 1
0
 public LogInController(IAuthenticationService service,
                        VolunteerService volunteerService, UserService userService, VolunteerDoctorService volunteerDoctorService)
 {
     _service                = service;
     _volunteerService       = volunteerService;
     _volunteerDoctorService = volunteerDoctorService;
     _userService            = userService;
 }
 public EmployeeController(UserService userService, EmployeeService employeeService,
                           VolunteerService volunteerService, WorkShopService shopService, AssignWorkShopService assignWorkShopService, NotificationService notificationService, VolunteerDoctorService volunteerDoctor,
                           RequestService requestService, AssignedRequestService assignedRequest)
 {
     _userService            = userService;
     _employeeService        = employeeService;
     _volunteerService       = volunteerService;
     _volunteerDoctorService = volunteerDoctor;
     _requestService         = requestService;
     _assignedRequest        = assignedRequest;
     _notificationService    = notificationService;
     _workshopService        = shopService;
     _assignworkShopService  = assignWorkShopService;
 }
 public RequestController(UserService userService, EmployeeService employeeService,
                          RequestService requestService, AssignedRequestService assignedRequest,
                          VolunteerService volunteerService, RequestCountService requestCount, NotificationService notificationService, VolunteerDoctorService volunteerDoctor)
 {
     _userService            = userService;
     _employeeService        = employeeService;
     _requestService         = requestService;
     _assignedRequest        = assignedRequest;
     _volunteerService       = volunteerService;
     _volunteerDoctorService = volunteerDoctor;
     _notificationService    = notificationService;
     _requestCount           = requestCount;
 }