Beispiel #1
0
 public TaskLogEntriesController(
     ExitSurveyAdminContext context,
     SieveProcessor sieveProcessor
     )
 {
     this.context   = context;
     SieveProcessor = sieveProcessor;
 }
 public EmployeeReconciliationService(
     ExitSurveyAdminContext context,
     CallWebService callWeb,
     EmployeeInfoLookupService infoLookupService
     )
 {
     this.context           = context;
     this.callWeb           = callWeb;
     this.infoLookupService = infoLookupService;
 }
Beispiel #3
0
 public CsvExtractController(
     ExitSurveyAdminContext context,
     CsvService csv,
     EmployeeReconciliationService employeeReconciler,
     LoggingService logger
     )
 {
     this.context            = context;
     this.csv                = csv;
     this.employeeReconciler = employeeReconciler;
     this.logger             = logger;
 }
 public EmployeesController(
     ExitSurveyAdminContext context,
     SieveProcessor sieveProcessor,
     EmployeeInfoLookupService employeeInfoLookup,
     EmployeeReconciliationService employeeReconciler,
     CallWebService callWebService,
     LoggingService loggingService
     )
 {
     this.context        = context;
     SieveProcessor      = sieveProcessor;
     EmployeeInfoLookup  = employeeInfoLookup;
     EmployeeReconciler  = employeeReconciler;
     this.callWebService = callWebService;
     logger = loggingService;
 }
 public AdminSettingsController(ExitSurveyAdminContext context)
 {
     this.context = context;
 }
 public EmailController(ExitSurveyAdminContext context)
 {
     Context = context;
 }
Beispiel #7
0
 public EmployeeTimelineEntriesController(ExitSurveyAdminContext context)
 {
     this.context = context;
 }
 public LoggingService(ExitSurveyAdminContext context)
 {
     this.context = context;
 }