Exemplo n.º 1
0
 public CategoriesController(HamperStoreEntities context)
 {
     _context = context;
 }
 public CustomersController(HamperStoreEntities context)
 {
     _context = context;
 }
Exemplo n.º 3
0
 public ProductsController(HamperStoreEntities context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public HomeController(HamperStoreEntities context)
 {
     _context = context;
 }
Exemplo n.º 5
0
 //Dependency Injection of HamperStoreEntities Context
 public CategoryService(HamperStoreEntities context)
 {
     //We can now use _context variable to call context within this Service
     _context = context;
 }