コード例 #1
0
ファイル: Cronie.cshtml.cs プロジェクト: birchturtle/laundry
 public CronieModel(laundry.Data.ApplicationDbContext context, UserManager <IdentityUser> userManager, IConfiguration configuration)
 {
     Configuration = configuration;
     _context      = context;
     _userManager  = userManager;
 }
コード例 #2
0
 public IndexModel(laundry.Data.ApplicationDbContext context)
 {
     _context = context;
 }
コード例 #3
0
ファイル: Create.cshtml.cs プロジェクト: birchturtle/laundry
 public CreateModel(laundry.Data.ApplicationDbContext context)
 {
     _context = context;
 }
コード例 #4
0
 public DetailsModel(laundry.Data.ApplicationDbContext context)
 {
     _context = context;
 }