public ProductController(ShopLocalContext context)
 {
     itemQuery = new ItemQuery(context);
 }
Exemple #2
0
 public ItemQuery(ShopLocalContext _context)
 {
     context = _context;
 }
Exemple #3
0
 public ShopQuery(ShopLocalContext _context)
 {
     context = _context;
 }
 public ShopController(ShopLocalContext _context)
 {
     context   = _context;
     shopQuery = new ShopQuery(context);
 }