Пример #1
0
 public AddModel(MyShopSiteContext context)
 {
     _context = context;
 }
Пример #2
0
 public HomeController(ILogger <HomeController> logger, MyShopSiteContext context)
 {
     _logger  = logger;
     _context = context;
 }
Пример #3
0
 public UserRepository(MyShopSiteContext context)
 {
     _context = context;
 }
Пример #4
0
 public EditModel(MyShopSiteContext context)
 {
     _context = context;
 }
Пример #5
0
 public ProductGroupsComponent(MyShopSiteContext context)
 {
     _context = context;
 }
 public GroupRepository(MyShopSiteContext context)
 {
     _context = context;
 }
 public ProductController(MyShopSiteContext context)
 {
     _context = context;
 }
Пример #8
0
 public DeleteModel(MyShopSiteContext context)
 {
     _context = context;
 }
Пример #9
0
 public IndexModel(MyShopSiteContext context)
 {
     _context = context;
 }
Пример #10
0
 public HomeController(MyShopSiteContext context)
 {
     _context = context;
 }