public HomeController(IProductService productService, IReportService reportService, IRateService rateService, ICommentService commentService, IShopPropositionService shopPropositionService, IProductPropositionService productPropositionService, IShopService shopService) { _productService = productService; _reportService = reportService; _rateService = rateService; _commentService = commentService; _shopPropositionService = shopPropositionService; _productPropositionService = productPropositionService; _shopService = shopService; }
public ShopController(IShopService shopService, IShopPropositionService shopPropositionService) { _shopService = shopService; _shopPropositionService = shopPropositionService; }