public OrderController(IDeliveryStatusService deliveryStatusService, UserManager <MyUser> userManager, IOrderService orderService, IOrderDetailService detailService, IProductService productService, IOrderStatusService statusService)
 {
     _userManager           = userManager;
     _orderService          = orderService;
     _detailService         = detailService;
     _productService        = productService;
     _statusService         = statusService;
     _deliveryStatusService = deliveryStatusService;
 }
Beispiel #2
0
 public DeliveryStatusController(IDeliveryStatusService deliveryStatusService)
 {
     _deliveryStatusService = deliveryStatusService;
 }