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;
 }