Exemplo n.º 1
0
 public ApplicantController(IAuthenticationService authenticationService, ISSOUserManager userManager,
                            IApplicantService applicantService)
 {
     _authenticationService = authenticationService;
     _userManager           = userManager;
     _applicantService      = applicantService;
 }
 public ScreenerController(IAuthenticationService authenticationService, ISSOUserManager userManager,
                           IScreeningService screeningService)
 {
     _authenticationService = authenticationService;
     _userManager           = userManager;
     _screeningService      = screeningService;
 }