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