예제 #1
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);
 }
예제 #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);
 }