示例#1
0
 public GetEligibleApprenticeshipsSearchHandler(
     ICommitmentsService commitmentsV2Service,
     IEmployerIncentivesService employerIncentivesService)
 {
     _commitmentsV2Service      = commitmentsV2Service;
     _employerIncentivesService = employerIncentivesService;
 }
        public void CommitmentsService_UnitOfService_Instantiation_Test()
        {
            IUnitOfService      unitOfService = new Social.Core.UnitOfService.Implementation.UnitOfService();
            ICommitmentsService Service       = unitOfService.CommitmentsService;

            Assert.IsNotNull(Service);
        }
示例#3
0
 public UpdateApplicationCommandHandler(ICommitmentsService commitmentsService, IApplicationService applicationService)
 {
     _commitmentsService = commitmentsService;
     _applicationService = applicationService;
 }
示例#4
0
 public SaveApprenticeshipDetailsCommandHandler(ICommitmentsService commitmentsService, IApplicationService applicationService)
 {
     _commitmentsService = commitmentsService;
     _applicationService = applicationService;
 }
示例#5
0
 public CreateApplicationCommandHandler(ICommitmentsService commitmentsService, IEmployerIncentivesService employerIncentivesService)
 {
     _commitmentsService        = commitmentsService;
     _employerIncentivesService = employerIncentivesService;
 }