コード例 #1
0
 public CreateModel(BreweriesDbContext db)
 {
     _db = db;
 }
コード例 #2
0
 public EditModel(BreweriesDbContext db)
 {
     _db = db;
 }
コード例 #3
0
 public IndexModel(BreweriesDbContext db)
 {
     _db = db;
 }
コード例 #4
0
 public IndexModel(IHttpClientFactory cf, BreweriesDbContext db)
 {
     _db            = db;
     _clientFactory = cf;
 }