Ejemplo n.º 1
0
 public CategoryService(ICategoryDataProxy dataProxy, ProductService productService) : base(dataProxy)
 {
     _productService = productService;
 }
Ejemplo n.º 2
0
 public CategoryService(ICategoryDataProxy dataProxy, IProductDataProxy productsDataProxy) : base(dataProxy)
 {
     _productsDataProxy = productsDataProxy;
 }