Пример #1
0
 public ServiceRunner(
     IA2IAService carService,
     IAdapterConfiguration adapterConfiguration,
     IQueueConsumer <RecogniseBatchCourtesyAmountRequest> carRequestQueueConsumer,
     IExchangePublisher <RecogniseBatchCourtesyAmountResponse> carResponseExchangePublisher)
 {
     this.adapterConfiguration         = adapterConfiguration;
     this.carRequestQueueConsumer      = carRequestQueueConsumer;
     this.carResponseExchangePublisher = carResponseExchangePublisher;
     this.carService = carService;
 }
Пример #2
0
 public ServiceRunner(
     IA2IAService carService,
     IAdapterConfiguration adapterConfiguration, 
     IQueueConsumer<RecogniseBatchCourtesyAmountRequest> carRequestQueueConsumer, 
     IExchangePublisher<RecogniseBatchCourtesyAmountResponse> carResponseExchangePublisher)
 {
     this.adapterConfiguration = adapterConfiguration;
     this.carRequestQueueConsumer = carRequestQueueConsumer;
     this.carResponseExchangePublisher = carResponseExchangePublisher;
     this.carService = carService;
 }
Пример #3
0
 public CarRequestMessageProcessor(
     // ReSharper disable once InconsistentNaming
     IA2IAService a2iaService,
     IFileSystem fileSystem,
     ICourtesyAmountRequestBatchInfoMapper courtesyAmountRequestBatchInfoMapper,
     IExchangePublisher <RecogniseBatchCourtesyAmountResponse> exchangePublisher,
     IChequeOcrResponseToMessageResponseMapper chequeOcrResponseToMessageResponseMapper)
 {
     this.a2iaService = a2iaService;
     this.fileSystem  = fileSystem;
     this.courtesyAmountRequestBatchInfoMapper = courtesyAmountRequestBatchInfoMapper;
     this.exchangePublisher = exchangePublisher;
     this.chequeOcrResponseToMessageResponseMapper = chequeOcrResponseToMessageResponseMapper;
 }