Exemple #1
0
 public EventConsumer(ICustomerService customerService,
                      IGenericAttributeService genericAttributeService,
                      ILocalizationService localizationService,
                      IPaymentService paymentService,
                      WorldpayPaymentManager worldpayPaymentManager)
 {
     this._customerService         = customerService;
     this._genericAttributeService = genericAttributeService;
     this._localizationService     = localizationService;
     this._paymentService          = paymentService;
     this._worldpayPaymentManager  = worldpayPaymentManager;
 }
Exemple #2
0
 public EventConsumer(ICustomerService customerService,
                      ILocalizationService localizationService,
                      IPaymentService paymentService,
                      PaymentSettings paymentSettings,
                      WorldpayPaymentManager worldpayPaymentManager)
 {
     this._customerService        = customerService;
     this._localizationService    = localizationService;
     this._paymentService         = paymentService;
     this._paymentSettings        = paymentSettings;
     this._worldpayPaymentManager = worldpayPaymentManager;
 }