コード例 #1
0
 public OrderBatchController(
     IOrderBatchService orderBatchService,
     IResourceManager resourceManager,
     ILogger logger,
     IWorkContext workContext)
     : base(logger, resourceManager)
 {
     _orderBatchService = orderBatchService;
     _workContext       = workContext;
 }
コード例 #2
0
 public DataUpdateWorker(
     IAppSettings appSettings,
     ILogger logger,
     IUserService userService,
     IOrderBatchService orderBatchService)
 {
     _appSettings       = appSettings;
     _logger            = logger;
     _userService       = userService;
     _orderBatchService = orderBatchService;
 }
コード例 #3
0
 public CommonController(
     ILocationService locationService,
     IDepartmentService departmentService,
     IProductService productService,
     IUserService userService,
     IOrderBatchService batchService,
     IWorkContext workContext,
     IOrderService orderService)
 {
     _locationService   = locationService;
     _departmentService = departmentService;
     _productService    = productService;
     _userService       = userService;
     _batchService      = batchService;
     _workContext       = workContext;
     _orderService      = orderService;
 }