public ServiceRunner( IA2IAService carService, IAdapterConfiguration adapterConfiguration, IQueueConsumer <RecogniseBatchCourtesyAmountRequest> carRequestQueueConsumer, IExchangePublisher <RecogniseBatchCourtesyAmountResponse> carResponseExchangePublisher) { this.adapterConfiguration = adapterConfiguration; this.carRequestQueueConsumer = carRequestQueueConsumer; this.carResponseExchangePublisher = carResponseExchangePublisher; this.carService = carService; }
public ServiceRunner( IA2IAService carService, IAdapterConfiguration adapterConfiguration, IQueueConsumer<RecogniseBatchCourtesyAmountRequest> carRequestQueueConsumer, IExchangePublisher<RecogniseBatchCourtesyAmountResponse> carResponseExchangePublisher) { this.adapterConfiguration = adapterConfiguration; this.carRequestQueueConsumer = carRequestQueueConsumer; this.carResponseExchangePublisher = carResponseExchangePublisher; this.carService = carService; }
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; }