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