Esempio n. 1
0
 public AttachRuleToTransactionsEventHandler(
     ILogger <AttachRuleToTransactionsEventHandler> logger,
     IMapper mapper,
     BankTransactionRuleFinder bankTransactionRuleFinder,
     ICommandsBus bus)
 {
     this.logger = logger;
     this.mapper = mapper;
     this.bankTransactionRuleFinder = bankTransactionRuleFinder;
     this.bus = bus;
 }
Esempio n. 2
0
 public TransactionController(ICommandsBus bus,
                              TransactionReader transactionReader,
                              ColumnFinder columnFinder,
                              BankTransactionRuleFinder bankTransactionRuleFinder,
                              IMapper mapper,
                              Export export)
 {
     this.bus = bus;
     this.transactionReader         = transactionReader;
     this.columnFinder              = columnFinder;
     this.bankTransactionRuleFinder = bankTransactionRuleFinder;
     this.mapper = mapper;
     this.export = export;
 }