public OrderLimitsTask(
     OpenPayApi openPayApi,
     OpenPayService openPayService,
     ISettingService settingService,
     IStoreService storeService,
     ILogger logger)
 {
     _openPayApi     = openPayApi;
     _openPayService = openPayService;
     _settingService = settingService;
     _storeService   = storeService;
     _logger         = logger;
 }
 public UpdateOrderStatusTask(
     OpenPayApi openPayApi,
     OpenPayService openPayService,
     ISettingService settingService,
     IStoreService storeService,
     IOrderService orderService,
     IOrderProcessingService orderProcessingService,
     ILogger logger)
 {
     _openPayApi             = openPayApi;
     _openPayService         = openPayService;
     _settingService         = settingService;
     _storeService           = storeService;
     _orderService           = orderService;
     _orderProcessingService = orderProcessingService;
     _logger = logger;
 }
 public OpenPayService(
     CustomerSettings customerSettings,
     CurrencySettings currencySettings,
     OpenPayApi openPayApi,
     OpenPayPaymentSettings openPayPaymentSettings,
     IAddressService addressService,
     IActionContextAccessor actionContextAccessor,
     ICustomerService customerService,
     ICurrencyService currencyService,
     IGenericAttributeService genericAttributeService,
     IOrderService orderService,
     IOrderTotalCalculationService orderTotalCalculationService,
     IProductService productService,
     IProductAttributeFormatter productAttributeFormatter,
     IStateProvinceService stateProvinceService,
     ISettingService settingService,
     IShoppingCartService shoppingCartService,
     ILocalizationService localizationService,
     IUrlHelperFactory urlHelperFactory,
     IWebHelper webHelper)
 {
     _customerSettings             = customerSettings;
     _currencySettings             = currencySettings;
     _openPayApi                   = openPayApi;
     _openPayPaymentSettings       = openPayPaymentSettings;
     _addressService               = addressService;
     _actionContextAccessor        = actionContextAccessor;
     _customerService              = customerService;
     _genericAttributeService      = genericAttributeService;
     _orderService                 = orderService;
     _orderTotalCalculationService = orderTotalCalculationService;
     _productService               = productService;
     _productAttributeFormatter    = productAttributeFormatter;
     _stateProvinceService         = stateProvinceService;
     _settingService               = settingService;
     _shoppingCartService          = shoppingCartService;
     _currencyService              = currencyService;
     _localizationService          = localizationService;
     _urlHelperFactory             = urlHelperFactory;
     _webHelper = webHelper;
 }