Exemple #1
0
 public EmployerFeedbackDataRetrievalService(
     ICommitmentService commitmentService,
     IAccountService accountService,
     IEmployerFeedbackRepository emailDetailsRepository)
 {
     _commitmentService      = commitmentService;
     _accountService         = accountService;
     _emailDetailsRepository = emailDetailsRepository;
 }
 public TrainingProviderService(
     ICommitmentService commitmentService
     , IEncodingService encodingService
     , IEmployerFeedbackRepository employerFeedbackRepository
     , ProvideFeedbackEmployerWebConfiguration config)
 {
     _commitmentService          = commitmentService;
     _encodingService            = encodingService;
     _employerFeedbackRepository = employerFeedbackRepository;
     _config = config;
 }
Exemple #3
0
 public SignEmployerAgreementCommandHandler(
     IMembershipRepository membershipRepository,
     IEmployerAgreementRepository employerAgreementRepository,
     IHashingService hashingService,
     IValidator <SignEmployerAgreementCommand> validator,
     IEmployerAgreementEventFactory agreementEventFactory,
     IGenericEventFactory genericEventFactory,
     IMediator mediator,
     IEventPublisher eventPublisher,
     ICommitmentService commitmentService)
 {
     _membershipRepository        = membershipRepository;
     _employerAgreementRepository = employerAgreementRepository;
     _hashingService        = hashingService;
     _validator             = validator;
     _agreementEventFactory = agreementEventFactory;
     _genericEventFactory   = genericEventFactory;
     _mediator          = mediator;
     _eventPublisher    = eventPublisher;
     _commitmentService = commitmentService;
 }
 public CommitmentPolicy(ICommitmentService commitmentService)
 {
     _commitmentService = commitmentService;
 }
 public GetCohortQueryHandler(ICommitmentService service, IValidator <GetCohortQuery> validator)
 {
     _service   = service;
     _validator = validator;
 }
Exemple #6
0
 public EmployerDataRetrieveFeedbackAccountsFunction(ICommitmentService commitmentService)
 {
     _commitmentService = commitmentService;
 }