コード例 #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;
 }
コード例 #6
0
 public GroupRepository(MyShopSiteContext context)
 {
     _context = context;
 }
コード例 #7
0
 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;
 }