public UmpaLumpaWorker(IMarketProvider providers, ICurrencyDAO currencyDAO, IStrategyDAO strategyDAO, ITransactionLayer transactionDAO) { this._providers = providers; this._currencyDAO = currencyDAO; this._strategyDAO = strategyDAO; this._transactionDAO = transactionDAO; }
public PaymentManager(IContextContainer container) : base(container) { _paypalPaymentDAO = new PaypalPaymentDAO(container); _easyPayPaymentDAO = new EasyPayPaymentDAO(container); _cashPaymentDAO = new CashPaymentDAO(container); _paymentDAO = new PaymentDAO(container); _currencyDAO = new CurrencyDAO(container); }
public Menu(ICurrencyDAO currencyDAO, ICountryDAO countryDAO, IHistoryDAO historyDAO) { this.currencyDAO = currencyDAO; this.countryDAO = countryDAO; this.historyDAO = historyDAO; }