Beispiel #1
0
 public PaymentService(IContainerIoc pContainer)
     : base(pContainer)
 {
     _storeDal         = AbstractUnityConfig.Resolve <IStoreDal>();
     _mockClearSaleDal = AbstractUnityConfig.Resolve <IMockClearSaleDal>();
     _paymentDal       = AbstractUnityConfig.Resolve <IPaymentDal>();
     _paymentBll       = AbstractUnityConfig.Resolve <IPaymentBll>();
 }
 public PaymentManager(
     IPaymentDal paymentDal,
     ICustomerService customerService,
     ICreditCardService creditCardService
     )
 {
     _paymentDal        = paymentDal;
     _creditCardService = creditCardService;
     _customerService   = customerService;
 }
 public PaymentManager(IPaymentDal paymentDal)
 {
     _paymentDal = paymentDal;
 }
 public PaymentManager(IPaymentDal paymentDal, IRentalService rentalService, ICustomerService customerService)
 {
     _paymentDal      = paymentDal;
     _rentalService   = rentalService;
     _customerService = customerService;
 }
 public PaymentManager(IPaymentDal creditCardDal)
 {
     _paymentDal = creditCardDal;
 }
Beispiel #6
0
 public PaymentManager(IPaymentDal paymentDal, IRentalService rentalService)
 {
     _paymentDal    = paymentDal;
     _rentalService = rentalService;
 }
 public PaymentManager(IPaymentDal _paymentDal)
 {
     paymentDal = _paymentDal;
 }
Beispiel #8
0
 public PaymentManager(IPaymentDal fakeCardDal)
 {
     _fakeCardDal = fakeCardDal;
 }
Beispiel #9
0
 public PaymentManager(IPaymentDal paymentDal, IFindexService findexService)
 {
     _paymentDal    = paymentDal;
     _findexService = findexService;
 }
Beispiel #10
0
 public PaymentManager(IPaymentDal paymentDal, ICardService cardService)
 {
     _paymentDal  = paymentDal;
     _cardService = cardService;
 }