Example #1
0
 public WorldpayPaymentMethod(ICurrencyService currencyService,
                              ICustomerService customerService,
                              ILocalizationService localizationService,
                              ILogger logger,
                              IOrderTotalCalculationService orderTotalCalculationService,
                              ISettingService settingService,
                              IStoreService storeService,
                              IWebHelper webHelper,
                              WorldpayPaymentManager worldpayPaymentManager,
                              WorldpayPaymentSettings worldpayPaymentSettings)
 {
     this._currencyService     = currencyService;
     this._customerService     = customerService;
     this._localizationService = localizationService;
     this._logger = logger;
     this._orderTotalCalculationService = orderTotalCalculationService;
     this._settingService          = settingService;
     this._storeService            = storeService;
     this._webHelper               = webHelper;
     this._worldpayPaymentManager  = worldpayPaymentManager;
     this._worldpayPaymentSettings = worldpayPaymentSettings;
 }
Example #2
0
 public WorldpayPaymentMethod(ICurrencyService currencyService,
                              ICustomerService customerService,
                              IGenericAttributeService genericAttributeService,
                              ILocalizationService localizationService,
                              ILogger logger,
                              IPaymentService paymentService,
                              ISettingService settingService,
                              IStoreService storeService,
                              IWebHelper webHelper,
                              WorldpayPaymentManager worldpayPaymentManager,
                              WorldpayPaymentSettings worldpayPaymentSettings)
 {
     this._currencyService         = currencyService;
     this._customerService         = customerService;
     this._genericAttributeService = genericAttributeService;
     this._localizationService     = localizationService;
     this._logger                  = logger;
     this._paymentService          = paymentService;
     this._settingService          = settingService;
     this._storeService            = storeService;
     this._webHelper               = webHelper;
     this._worldpayPaymentManager  = worldpayPaymentManager;
     this._worldpayPaymentSettings = worldpayPaymentSettings;
 }