Esempio n. 1
0
 public TransactionCommandMapper(
     ICurrentUserService currentUserService,
     ICantorWalletRepository cantorWalletRepository,
     ICurrencyRepository currencyRepository)
 {
     this.currentUserService     = currentUserService;
     this.cantorWalletRepository = cantorWalletRepository;
     this.currencyRepository     = currencyRepository;
 }
 public CurrencyUpdater(
     ICurrencyRepository currencyRepository,
     ICantorCurrencyRepository cantorCurrencyRepository,
     ICurrencyUpdaterRestClient currencyUpdaterRestClient,
     ICantorWalletRepository cantorWalletRepository,
     ICurrencyUpdateService currencyUpdateService,
     IUnitOfWork unitOfWork,
     IInitializeCurrenciesFactory initializeCurrenciesFactory)
 {
     this.currencyRepository        = currencyRepository;
     this.cantorCurrencyRepository  = cantorCurrencyRepository;
     this.currencyUpdaterRestClient = currencyUpdaterRestClient;
     this.cantorWalletRepository    = cantorWalletRepository;
     this.currencyUpdateService     = currencyUpdateService;
     this.unitOfWork = unitOfWork;
     this.initializeCurrenciesFactory = initializeCurrenciesFactory;
 }