Ejemplo n.º 1
0
 public UmpaLumpaWorker(IMarketProvider providers, ICurrencyDAO currencyDAO, IStrategyDAO strategyDAO, ITransactionLayer transactionDAO)
 {
     this._providers      = providers;
     this._currencyDAO    = currencyDAO;
     this._strategyDAO    = strategyDAO;
     this._transactionDAO = transactionDAO;
 }
Ejemplo n.º 2
0
 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);
 }
Ejemplo n.º 3
0
 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);
 }
Ejemplo n.º 4
0
 public Menu(ICurrencyDAO currencyDAO, ICountryDAO countryDAO, IHistoryDAO historyDAO)
 {
     this.currencyDAO = currencyDAO;
     this.countryDAO  = countryDAO;
     this.historyDAO  = historyDAO;
 }