Example #1
0
 public ProdutosController(IProductService productService, IProductParentService productParentService,
                           IBrandService brandService, ICategoryService categoryService)
 {
     _productService       = productService;
     _productParentService = productParentService;
     _brandService         = brandService;
     _categoryService      = categoryService;
 }
Example #2
0
 public InicioController(ICustomerService customerService, IProductService productService, IProductParentService productParentService)
 {
     _customerService      = customerService;
     _productService       = productService;
     _productParentService = productParentService;
 }
 public VistasExplodidasController(IProductParentService productParentService, IBrandService brandService, ICategoryService categoryService)
 {
     _productParentService = productParentService;
     _brandService         = brandService;
     _categoryService      = categoryService;
 }