public ProductosController(RepositoryProductos repo, ServiceCacheRedis serviceCache) { this.repo = repo; this.serviceCache = serviceCache; }
public ProductosController(RepositoryProductos repo) { this.repo = repo; }
public Productos(SolutionDbContext solutionDbContext) { _repo = new RepositoryProductos(solutionDbContext); }