示例#1
0
 public CategoriesController(HamperStoreEntities context)
 {
     _context = context;
 }
 public CustomersController(HamperStoreEntities context)
 {
     _context = context;
 }
示例#3
0
 public ProductsController(HamperStoreEntities context)
 {
     _context = context;
 }
示例#4
0
 public HomeController(HamperStoreEntities context)
 {
     _context = context;
 }
示例#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;
 }