Exemple #1
0
 public ExecuteService(IDbAccessor omsAccessor, IWorkContext workContext, IConfiguration configuration, IOrderSyncService orderSyncService, ILogService logService, IProductService productService,
                       ICMBService cmbService)
     : base(omsAccessor, workContext)
 {
     _orderSyncService = orderSyncService;
     _configuration    = configuration;
     _logService       = logService;
     _productService   = productService;
     _cmbService       = cmbService;
 }
 public ScheduleTaskFuncService(IDbAccessor omsAccessor,
                                IWorkContext workContext,
                                IConfiguration configuration,
                                IOrderSyncService orderSyncService,
                                ILogService logService,
                                IProductService productService,
                                ICMBService cmbService)
     : base(omsAccessor, workContext, configuration)
 {
     _orderSyncService    = orderSyncService;
     WMSApiUrl            = configuration.GetSection("WMSApi")["domain"].ToString();
     this._logService     = logService;
     this._productService = productService;
     _cmbService          = cmbService;
 }