Example #1
0
 public HomeController(productContext context)
 {
     dbContext = context;
 }
Example #2
0
 public productsController(productContext context)
 {
     _context = context;
 }
Example #3
0
 public Repository(string connStr)
 {
     context = new productContext(connStr);
 }