Пример #1
0
 public ProductController(IService <Product> service, IProductCategoryRead <Product> categoryReadService)
 {
     _service             = service;
     _categoryReadService = categoryReadService;
 }
Пример #2
0
 public ProductCategoryController(IService <ProductCategory> service, IProductCategoryRead <ProductCategory> productCategoryReadService)
 {
     _service = service;
     _productCategoryReadService = productCategoryReadService;
 }