public ServiceOrderController(IServiceOrderService serviceOrderService, IProductService productService, IWorkContext workContext, IMemberAddressService memberAddressService, IMemberService memberService)
 {
     _serviceOrderService = serviceOrderService;
     _productService = productService;
     _workContext = workContext;
     _memberAddressService = memberAddressService;
     _memberService = memberService;
 }
 public ServiceOrderController(IServiceOrderService serviceOrderService, IProductService productService, IWorkContext workContext, IMemberAddressService memberAddressService, IMemberService memberService)
 {
     _serviceOrderService  = serviceOrderService;
     _productService       = productService;
     _workContext          = workContext;
     _memberAddressService = memberAddressService;
     _memberService        = memberService;
 }
示例#3
0
 public JobService(
     IMoveStrategy moveStrategy
     , JobDbContext dbContext
     , IMapper mapper
     , ILogger <JobService> logger
     , IHttpContextAccessor httpContextAccessor
     , IServiceOrderService serviceOrderService
     , IHomeFrontEventService homeFrontEventService
     , IEventBus eventBus
     , IIntegrationEventLogService eventLogService) : base(dbContext, mapper, httpContextAccessor)
 {
     _moveStrategy          = moveStrategy ?? throw new ArgumentNullException("moveStrategy");
     _dbContext             = dbContext ?? throw new ArgumentNullException("dbContext");
     _mapper                = mapper ?? throw new ArgumentNullException("mapper");
     _logger                = logger ?? throw new ArgumentNullException("logger");
     _eventBus              = eventBus ?? throw new ArgumentNullException(nameof(eventBus));
     _serviceOrderService   = serviceOrderService ?? throw new ArgumentNullException("serviceOrderService");
     _eventLogService       = eventLogService ?? throw new ArgumentNullException("eventLogService");
     _homeFrontEventService = homeFrontEventService ?? throw new ArgumentNullException("homeFrontEventService");
 }
示例#4
0
 public ServiceOrdersController(IServiceOrderService ServiceOrderService,
                                ICommandDispatcher commandDispatcher) : base(commandDispatcher)
 {
     _serviceOrderService = ServiceOrderService;
 }
示例#5
0
 public SetServiceManHandller(IHandler handler, IServiceOrderService serviceOrderService)
 {
     _handler             = handler;
     _serviceOrderService = serviceOrderService;
 }
 public AddServiceOrderDescriptionHandller(IHandler handler, IServiceOrderService serviceOrderService)
 {
     _handler             = handler;
     _serviceOrderService = serviceOrderService;
 }
示例#7
0
 public AlipayController(IOrderService orderService, IServiceOrderService serviceOrderService)
 {
     _orderService        = orderService;
     _serviceOrderService = serviceOrderService;
 }
示例#8
0
 public AlipayController(IOrderService orderService,IServiceOrderService serviceOrderService)
 {
     _orderService = orderService;
     _serviceOrderService = serviceOrderService;
 }