Beispiel #1
0
 public DashboardController(IProductCatService productCatService, IProductService productService)
 {
     _productCatService = productCatService;
     _productService    = productService;
 }
 public ShopController(IProductService productService, IProductCatService productCatService)
 {
     _productService    = productService;
     _productCatService = productCatService;
 }
 public AdminController(IProductCatService productCatService, IProductService productService)
 {
     _productCatService = productCatService;
     _productService    = productService;
 }