public JobSeekerController(IJobSeekerService service, IIntervieweeService intervieweeService, IOutcomeService outcomeService, ILeaverService leaverService)
 {
     _service            = service;
     _intervieweeService = intervieweeService;
     _outcomeService     = outcomeService;
     _leaverService      = leaverService;
 }
 public SimpleCompressionOrchestrationService(
     IClientOptionsService clientOptionsService,
     IOutcomeService outcomeService)
 {
     _clientOptionsService = clientOptionsService;
     _outcomeService       = outcomeService;
 }
예제 #3
0
 public OutcomeController(QuizDbContext db, IOutcomeService outcomeService,
                          IStorageService storageService, IPhotoService photoService, IMapper mapper)
 {
     _db             = db;
     _outcomeService = outcomeService;
     _storageService = storageService;
     _photoService   = photoService;
     _mapper         = mapper;
 }
예제 #4
0
 public RemovePupilAmendmentBuilder(
     IOrganizationService organizationService,
     IOutcomeService outcomeService,
     IPupilService pupilService,
     DynamicsOptions dynamicsOptions,
     IAllocationYearConfig year,
     ILogger <RemovePupilAmendmentBuilder> logger)
     : base(
         organizationService, outcomeService, pupilService, dynamicsOptions, year, logger)
 {
 }
예제 #5
0
 public ParallelCompressionOrchestrationService(
     IClientOptionsService clientOptionsService,
     IParallelCompressionService parallelCompressionService,
     ISourceReader sourceReader,
     IDestinationWriter destinationWriter,
     IOutcomeService outcomeService,
     IThreadService threadService)
 {
     _clientOptionsService       = clientOptionsService;
     _parallelCompressionService = parallelCompressionService;
     _sourceReader      = sourceReader;
     _destinationWriter = destinationWriter;
     _outcomeService    = outcomeService;
     _threadService     = threadService;
 }
 protected AmendmentBuilder(
     IOrganizationService organizationService,
     IOutcomeService outcomeService,
     IPupilService pupilService,
     DynamicsOptions dynamicsOptions,
     IAllocationYearConfig year,
     ILogger <AmendmentBuilder> logger)
 {
     PupilService         = pupilService;
     _outcomeService      = outcomeService;
     _organizationService = organizationService;
     _firstLineTeam       = new EntityReference("team", dynamicsOptions.Helpdesk1stLineTeamId);
     _autoRecordedUser    = new EntityReference("systemuser", dynamicsOptions.AutoRecordedUser);
     _allocationYear      = year.Value;
     _logger = logger;
 }
예제 #7
0
 public OutcomeController(IOutcomeService service)
 {
     this.service = service;
 }
 public OutcomeController(IOutcomeService outcomeService)
 {
     _outcomeService = outcomeService;
 }