public UserRepository(MarketShopContext context)
 {
     _context = context;
 }
 public ProductController(MarketShopContext context)
 {
     context = _context;
 }
 public GroupRepository(MarketShopContext context)
 {
     _context = context;
 }
 public HomeController(ILogger <HomeController> logger, MarketShopContext context)
 {
     _logger  = logger;
     _context = context;
 }
Exemple #5
0
 public ProductGroupComponent(MarketShopContext context)
 {
     _context = context;
 }