Ejemplo n.º 1
0
 public AssetTransactionsQueueFunctions(EmailSenderClient emailSenderProducer,
                                        IAssetTransactionsReportService reportService,
                                        IAssetTransactionsReportMetadataRepository metadataRepository,
                                        ILog log,
                                        IAssetTransactionsReportStorage reportStorage)
 {
     _emailSenderProducer = emailSenderProducer;
     _reportService       = reportService;
     _metadataRepository  = metadataRepository;
     _log           = log;
     _reportStorage = reportStorage;
 }
 public AddressTransactionsQueueFunctions(
     IAddressTransactionReportService addressTransactionReportService,
     ILog log,
     EmailSenderClient emailSenderProducer,
     IAddressTransactionsReportMetadataRepository addressTransactionsReportMetadataRepository,
     IAddressTransactionsReportStorage addressTransactionsReportStorage)
 {
     _addressTransactionReportService = addressTransactionReportService;
     _log = log;
     _emailSenderProducer = emailSenderProducer;
     _addressTransactionsReportMetadataRepository = addressTransactionsReportMetadataRepository;
     _addressTransactionsReportStorage            = addressTransactionsReportStorage;
 }