public ProductController(IService <Product> service, IProductCategoryRead <Product> categoryReadService) { _service = service; _categoryReadService = categoryReadService; }
public ProductCategoryController(IService <ProductCategory> service, IProductCategoryRead <ProductCategory> productCategoryReadService) { _service = service; _productCategoryReadService = productCategoryReadService; }