public SquarePaymentMethod(CurrencySettings currencySettings,
                            ICurrencyService currencyService,
                            ICustomerService customerService,
                            IGenericAttributeService genericAttributeService,
                            ILocalizationService localizationService,
                            ILogger logger,
                            IPaymentService paymentService,
                            IPageHeadBuilder pageHeadBuilder,
                            ISettingService settingService,
                            IScheduleTaskService scheduleTaskService,
                            IWebHelper webHelper,
                            SquarePaymentManager squarePaymentManager,
                            SquarePaymentSettings squarePaymentSettings)
 {
     _currencySettings        = currencySettings;
     _currencyService         = currencyService;
     _customerService         = customerService;
     _genericAttributeService = genericAttributeService;
     _localizationService     = localizationService;
     _logger                = logger;
     _paymentService        = paymentService;
     _pageHeadBuilder       = pageHeadBuilder;
     _settingService        = settingService;
     _scheduleTaskService   = scheduleTaskService;
     _webHelper             = webHelper;
     _squarePaymentManager  = squarePaymentManager;
     _squarePaymentSettings = squarePaymentSettings;
 }
Esempio n. 2
0
 public SquarePaymentMethod(CurrencySettings currencySettings,
                            ICurrencyService currencyService,
                            ICustomerService customerService,
                            IGenericAttributeService genericAttributeService,
                            ILocalizationService localizationService,
                            ILogger logger,
                            IOrderTotalCalculationService orderTotalCalculationService,
                            IPageHeadBuilder pageHeadBuilder,
                            ISettingService settingService,
                            IScheduleTaskService scheduleTaskService,
                            IWebHelper webHelper,
                            SquarePaymentManager squarePaymentManager,
                            SquarePaymentSettings squarePaymentSettings)
 {
     this._currencySettings        = currencySettings;
     this._currencyService         = currencyService;
     this._customerService         = customerService;
     this._genericAttributeService = genericAttributeService;
     this._localizationService     = localizationService;
     this._logger = logger;
     this._orderTotalCalculationService = orderTotalCalculationService;
     this._pageHeadBuilder       = pageHeadBuilder;
     this._settingService        = settingService;
     this._scheduleTaskService   = scheduleTaskService;
     this._webHelper             = webHelper;
     this._squarePaymentManager  = squarePaymentManager;
     this._squarePaymentSettings = squarePaymentSettings;
 }
 public PaymentSquareViewComponent(CurrencySettings currencySettings,
                                   ICountryService countryService,
                                   ICurrencyService currencyService,
                                   ICustomerService customerService,
                                   IGenericAttributeService genericAttributeService,
                                   ILocalizationService localizationService,
                                   IOrderTotalCalculationService orderTotalCalculationService,
                                   IShoppingCartService shoppingCartService,
                                   IStateProvinceService stateProvinceService,
                                   IStoreContext storeContext,
                                   IWorkContext workContext,
                                   SquarePaymentManager squarePaymentManager,
                                   SquarePaymentSettings squarePaymentSettings)
 {
     _currencySettings             = currencySettings;
     _countryService               = countryService;
     _currencyService              = currencyService;
     _customerService              = customerService;
     _genericAttributeService      = genericAttributeService;
     _localizationService          = localizationService;
     _orderTotalCalculationService = orderTotalCalculationService;
     _shoppingCartService          = shoppingCartService;
     _stateProvinceService         = stateProvinceService;
     _storeContext          = storeContext;
     _workContext           = workContext;
     _squarePaymentManager  = squarePaymentManager;
     _squarePaymentSettings = squarePaymentSettings;
 }
 public PaymentSquareViewComponent(ILocalizationService localizationService,
                                   IWorkContext workContext,
                                   SquarePaymentManager squarePaymentManager)
 {
     this._localizationService  = localizationService;
     this._workContext          = workContext;
     this._squarePaymentManager = squarePaymentManager;
 }
Esempio n. 5
0
 public PaymentSquareViewComponent(IGenericAttributeService genericAttributeService,
                                   ILocalizationService localizationService,
                                   IWorkContext workContext,
                                   SquarePaymentManager squarePaymentManager)
 {
     _genericAttributeService = genericAttributeService;
     _localizationService     = localizationService;
     _workContext             = workContext;
     _squarePaymentManager    = squarePaymentManager;
 }
Esempio n. 6
0
 public PaymentSquareController(ILocalizationService localizationService,
                                IPermissionService permissionService,
                                ISettingService settingService,
                                SquarePaymentManager squarePaymentManager,
                                SquarePaymentSettings squarePaymentSettings)
 {
     this._localizationService   = localizationService;
     this._permissionService     = permissionService;
     this._settingService        = settingService;
     this._squarePaymentManager  = squarePaymentManager;
     this._squarePaymentSettings = squarePaymentSettings;
 }
Esempio n. 7
0
 public PaymentSquareController(ILocalizationService localizationService,
                                INotificationService notificationService,
                                IPermissionService permissionService,
                                ISettingService settingService,
                                IStoreContext storeContext,
                                SquarePaymentManager squarePaymentManager)
 {
     _localizationService  = localizationService;
     _notificationService  = notificationService;
     _permissionService    = permissionService;
     _settingService       = settingService;
     _storeContext         = storeContext;
     _squarePaymentManager = squarePaymentManager;
 }
 public PaymentSquareController(ILocalizationService localizationService,
                                INotificationService notificationService,
                                IPermissionService permissionService,
                                ISettingService settingService,
                                SquarePaymentManager squarePaymentManager,
                                SquarePaymentSettings squarePaymentSettings)
 {
     _localizationService   = localizationService;
     _notificationService   = notificationService;
     _permissionService     = permissionService;
     _settingService        = settingService;
     _squarePaymentManager  = squarePaymentManager;
     _squarePaymentSettings = squarePaymentSettings;
 }