public PaymentPayUController(ISettingService settingService, PayUPaymentSettings payUPaymentSettings, IPermissionService permissionService, INotificationService notificationService, ILocalizationService localizationService) { this._settingService = settingService; this._payUPaymentSettings = payUPaymentSettings; this._permissionService = permissionService; this._notificationService = notificationService; this._localizationService = localizationService; }
public PaymentPayUService(ISettingService settingService, IWebHelper webHelper, CustomerSettings customerSettings, PayUPaymentSettings payUPaymentSettings, ICurrencyService currencyService, CurrencySettings currencySettings, ICustomerService customerService, IGenericAttributeService genericAttributeService) { this._settingService = settingService; this._webHelper = webHelper; this._customerSettings = customerSettings; this._payUPaymentSettings = payUPaymentSettings; this._currencyService = currencyService; this._currencySettings = currencySettings; this._customerService = customerService; this._genericAttributeService = genericAttributeService; this._strBuilderPost = new StringBuilder(); }
public PayUService( ILogger logger, PayUPaymentSettings payUPaymentSettings, IHttpContextAccessor httpContextAccessor, IWebHelper webHelper, IOrderProcessingService orderProcessingService, ICurrencyService currencyService, IOrderService orderService) { _logger = logger; _payUPaymentSettings = payUPaymentSettings; _httpContextAccessor = httpContextAccessor; _webHelper = webHelper; _orderProcessingService = orderProcessingService; _currencyService = currencyService; _orderService = orderService; }