示例#1
0
 public UserController(IUserService userService, IProductService productService, IMessageService messageService, IMultipleProductImagesService multipleProductImagesService, IGlobalMessageService globalMessageService, ICartService cartService, IOrderService orderService)
 {
     _userService    = userService;
     _productService = productService;
     _messageService = messageService;
     _multipleProductImagesService = multipleProductImagesService;
     _globalMessageService         = globalMessageService;
     _cartService  = cartService;
     _orderService = orderService;
 }
 public GlobalMessagesController(IGlobalMessageService globalMessageService) =>