Exemplo n.º 1
0
 public OrderController(IOrderService orderService, ISlotService slotService, ICustomerService customerService, IShipperService shipperService, IOrderSService orderServiceService)
 {
     _orderService        = orderService;
     _slotService         = slotService;
     _customerService     = customerService;
     _shipperService      = shipperService;
     _orderServiceService = orderServiceService;
 }
Exemplo n.º 2
0
 public StoreController(IStoreService storeService, IAccountService accountService, IOrderSService orderSService, IOrderService orderService, IServiceTypeService serviceTypeService, IServiceService serviceService, ICustomerService customerService)
 {
     _storeService       = storeService;
     _accountService     = accountService;
     _orderSService      = orderSService;
     _orderService       = orderService;
     _serviceTypeService = serviceTypeService;
     _serviceService     = serviceService;
     _customerService    = customerService;
 }
Exemplo n.º 3
0
 public OrderController(IOrderService orderService, ISlotService slotService, ICustomerService customerService, IShipperService shipperService, IOrderSService orderServiceService, IServiceService serviceService, IStoreService storeService, IHubContext <CenterHub> hub)
 {
     _orderService        = orderService;
     _slotService         = slotService;
     _customerService     = customerService;
     _shipperService      = shipperService;
     _orderServiceService = orderServiceService;
     _serviceService      = serviceService;
     _storeService        = storeService;
     _hub = hub;
 }
Exemplo n.º 4
0
 public OrderServiceController(IOrderSService orderServiceService, IOrderService orderService, IServiceService serviceService)
 {
     _orderServiceService = orderServiceService;
     _orderService        = orderService;
     _serviceService      = serviceService;
 }