コード例 #1
0
 public DetailsModel(Web.Data.ApplicationDbContext context)
 {
     _context = context;
 }
コード例 #2
0
 public IndexModel(Web.Data.ApplicationDbContext context)
 {
     _context = context;
 }
コード例 #3
0
 public EditModel(Web.Data.ApplicationDbContext context)
 {
     _context = context;
 }
コード例 #4
0
 public CreateModel(Web.Data.ApplicationDbContext context)
 {
     _context = context;
 }
コード例 #5
0
 public TheBedModel(ILogger <TheBedModel> logger, Web.Data.ApplicationDbContext context)
 {
     _logger  = logger;
     _context = context;
 }
コード例 #6
0
 public CreateModel(Web.Data.ApplicationDbContext context, UserManager <IdentityUser> userManager)
 {
     _context     = context;
     _userManager = userManager;
 }
コード例 #7
0
 public IndexModel(Web.Data.ApplicationDbContext context, UserManager <ApplicationUser> userManager)
 {
     _context         = context;
     this.userManager = userManager;
 }
コード例 #8
0
 public CreateModel(Web.Data.ApplicationDbContext context, IUploadServices upload)
 {
     _context    = context;
     this.upload = upload;
 }