public AddModel(MyShopSiteContext context)
 {
     _context = context;
 }
 public HomeController(ILogger <HomeController> logger, MyShopSiteContext context)
 {
     _logger  = logger;
     _context = context;
 }
Example #3
0
 public UserRepository(MyShopSiteContext context)
 {
     _context = context;
 }
 public EditModel(MyShopSiteContext context)
 {
     _context = context;
 }
Example #5
0
 public ProductGroupsComponent(MyShopSiteContext context)
 {
     _context = context;
 }
 public GroupRepository(MyShopSiteContext context)
 {
     _context = context;
 }
 public ProductController(MyShopSiteContext context)
 {
     _context = context;
 }
Example #8
0
 public DeleteModel(MyShopSiteContext context)
 {
     _context = context;
 }
Example #9
0
 public IndexModel(MyShopSiteContext context)
 {
     _context = context;
 }
Example #10
0
 public HomeController(MyShopSiteContext context)
 {
     _context = context;
 }