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; }
public ProductGroupComponent(MarketShopContext context) { _context = context; }