コード例 #1
0
 public GetEmployerAccountTransactionsHandler(IDasLevyService dasLevyService, IValidator <GetEmployerAccountTransactionsQuery> validator, IApprenticeshipInfoServiceWrapper apprenticeshipInfoServiceWrapper, ILogger logger)
 {
     _dasLevyService = dasLevyService;
     _validator      = validator;
     _apprenticeshipInfoServiceWrapper = apprenticeshipInfoServiceWrapper;
     _logger = logger;
 }
 public GetEmployerEnglishFractionHandler(IValidator <GetEmployerEnglishFractionQuery> validator, IDasLevyService dasLevyService, IMediator mediator, IHashingService hashingService)
 {
     _validator      = validator;
     _dasLevyService = dasLevyService;
     _mediator       = mediator;
     _hashingService = hashingService;
 }
 public FindAccountProviderPaymentsHandler(
     IValidator <FindAccountProviderPaymentsQuery> validator,
     IDasLevyService dasLevyService,
     IHashingService hashingService)
 {
     _validator      = validator;
     _dasLevyService = dasLevyService;
     _hashingService = hashingService;
 }
 public FindEmployerAccountLevyDeclarationTransactionsHandler(
     IValidator <FindEmployerAccountLevyDeclarationTransactionsQuery> validator,
     IDasLevyService dasLevyService,
     IHashingService hashingService)
 {
     _validator      = validator;
     _dasLevyService = dasLevyService;
     _hashingService = hashingService;
 }
 public GetEmployerAccountTransactionsHandler(
     IDasLevyService dasLevyService,
     IValidator <GetEmployerAccountTransactionsQuery> validator,
     ILog logger,
     IHashingService hashingService,
     IPublicHashingService publicHashingService)
 {
     _dasLevyService       = dasLevyService;
     _validator            = validator;
     _logger               = logger;
     _hashingService       = hashingService;
     _publicHashingService = publicHashingService;
 }
コード例 #6
0
 public GetAccountFinanceOverviewQueryHandler(
     ICurrentDateTime currentDateTime,
     IDasForecastingService dasForecastingService,
     IDasLevyService levyService,
     IValidator <GetAccountFinanceOverviewQuery> validator,
     ILog logger)
 {
     _currentDateTime       = currentDateTime;
     _dasForecastingService = dasForecastingService;
     _levyService           = levyService;
     _validator             = validator;
     _logger = logger;
 }