public PaymentPagSeguroController(ISettingService settingService, IWebHelper webHelper, IPagSeguroService pagSeguroService, PagSeguroPaymentSetting pagSeguroPaymentSetting)
 {
     this._settingService          = settingService;
     this._webHelper               = webHelper;
     this._pagSeguroService        = pagSeguroService;
     this._pagSeguroPaymentSetting = pagSeguroPaymentSetting;
 }
 public PaymentPagSeguroController(ISettingService settingService, PagSeguroPaymentSetting pagSeguroPaymentSetting, IPermissionService permissionService, INotificationService notificationService, ILocalizationService localizationService)
 {
     this._settingService          = settingService;
     this._pagSeguroPaymentSetting = pagSeguroPaymentSetting;
     this._permissionService       = permissionService;
     this._notificationService     = notificationService;
     this._localizationService     = localizationService;
 }
Beispiel #3
0
 public PagSeguroService(ISettingService settingService, ICurrencyService currencyService, CurrencySettings currencySettings, PagSeguroPaymentSetting pagSeguroPaymentSetting, IOrderService orderService, IOrderProcessingService orderProcessingService, IStoreContext storeContext)
 {
     this._settingService          = settingService;
     this._currencyService         = currencyService;
     this._currencySettings        = currencySettings;
     this._pagSeguroPaymentSetting = pagSeguroPaymentSetting;
     this._orderService            = orderService;
     this._orderProcessingService  = orderProcessingService;
     this._storeContext            = storeContext;
 }
 public PagSeguroService(ISettingService settingService, ICurrencyService currencyService, CurrencySettings currencySettings, PagSeguroPaymentSetting pagSeguroPaymentSetting, IOrderService orderService, IOrderProcessingService orderProcessingService, IStoreContext storeContext, ICustomerService customerService, IAddressService addressService, ICountryService countryService, IStateProvinceService stateProvinceService, IProductService _productService)
 {
     this._settingService          = settingService;
     this._currencyService         = currencyService;
     this._currencySettings        = currencySettings;
     this._pagSeguroPaymentSetting = pagSeguroPaymentSetting;
     this._orderService            = orderService;
     this._orderProcessingService  = orderProcessingService;
     this._storeContext            = storeContext;
     this._customerService         = customerService;
     this._addressService          = addressService;
     this._countryService          = countryService;
     this._stateProvinceService    = stateProvinceService;
     this._productService          = _productService;
 }
 public PagSeguroService(ICustomerService customerService,
                         ICountryService countryService,
                         IStateProvinceService stateProvinceService,
                         IProductService productService,
                         ISettingService settingService,
                         ICurrencyService currencyService,
                         CurrencySettings currencySettings,
                         PagSeguroPaymentSetting pagSeguroPaymentSetting,
                         IOrderService orderService,
                         IOrderProcessingService orderProcessingService,
                         IStoreContext storeContext)
 {
     _customerService         = customerService;
     _countryService          = countryService;
     _stateProvinceService    = stateProvinceService;
     _productService          = productService;
     _currencyService         = currencyService;
     _currencySettings        = currencySettings;
     _pagSeguroPaymentSetting = pagSeguroPaymentSetting;
     _orderService            = orderService;
     _orderProcessingService  = orderProcessingService;
     _storeContext            = storeContext;
 }