public ProductsController(IModeratorProductsService productService,
                           IModeratorCategoryService categoryService)
 {
     this.productService  = productService;
     this.categoryService = categoryService;
 }
Exemple #2
0
 public CategoriesController(IModeratorCategoryService categoryService)
 {
     this.categoryService = categoryService;
 }