public HomeController(IReposInterface <Product> repos) { productService = new ProductService(repos); }
public ProductService(IReposInterface <Product> rep) { repos = rep; mapper = new Mapper(config); }