Esempio n. 1
0
 public PaymentWorldpayViewComponent(ILocalizationService localizationService,
                                     IWorkContext workContext,
                                     WorldpayPaymentManager worldpayPaymentManager)
 {
     this._localizationService    = localizationService;
     this._workContext            = workContext;
     this._worldpayPaymentManager = worldpayPaymentManager;
 }
 public PaymentWorldpayController(ICustomerService customerService,
                                  IGenericAttributeService genericAttributeService,
                                  ILocalizationService localizationService,
                                  IPermissionService permissionService,
                                  ISettingService settingService,
                                  WorldpayPaymentManager worldpayPaymentManager,
                                  WorldpayPaymentSettings worldpayPaymentSettings)
 {
     this._customerService         = customerService;
     this._genericAttributeService = genericAttributeService;
     this._localizationService     = localizationService;
     this._permissionService       = permissionService;
     this._settingService          = settingService;
     this._worldpayPaymentManager  = worldpayPaymentManager;
     this._worldpayPaymentSettings = worldpayPaymentSettings;
 }
Esempio n. 3
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;
 }
Esempio n. 4
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;
 }