コード例 #1
0
 public GenresController(TheGStoreDbContext context)
 {
     _context = context;
 }
コード例 #2
0
 public OrdersController(TheGStoreDbContext context)
 {
     _context = context;
 }
コード例 #3
0
ファイル: DevelopersController.cs プロジェクト: PoixoN/DBLab
 public DevelopersController(TheGStoreDbContext context)
 {
     _context = context;
 }
コード例 #4
0
 public CustomersController(TheGStoreDbContext context)
 {
     _context = context;
 }
コード例 #5
0
 public QueriesController(TheGStoreDbContext context, IConfiguration configuration)
 {
     _context      = context;
     Configuration = configuration;
 }
コード例 #6
0
 public CountriesController(TheGStoreDbContext context)
 {
     _context = context;
 }