public ActionResult ViewDB(string DbContext) { try { if (!Authen.Certification(Session["UserClass"].ToString(), Authen.UserClass.Admin)) { return(RedirectToAction("PermitionEr", "Error")); } HomeworkDBContext homeworkDB = new HomeworkDBContext(); CommentDBContext commentDB = new CommentDBContext(); UserDBContext userDB = new UserDBContext(); CategoryDBContext categoryDB = new CategoryDBContext(); UserCategoriesDBcontext userCategoriesDB = new UserCategoriesDBcontext(); NoteCatDBContext noteCatDB = new NoteCatDBContext(); ClassNotiDBcontext classNotiDB = new ClassNotiDBcontext(); return(View()); } catch { return(RedirectToAction("LoginEr", "Error")); } }
public GetHomeworks(HomeworkDBContext homeworkDB, UserDBContext userDB, NoteCatDBContext noteCatDB, SelectedCategoriesDBcontext userCatDB, NoteClassDBContext noteClassDB, string id) { this.homeworkDB = homeworkDB; this.userDB = userDB; this.userCatDB = userCatDB; this.noteCatDB = noteCatDB; this.noteClassDB = noteClassDB; user = userDB.Users.First(e => e.UserId == id); }
public HomeworkController(HomeworkDBContext context, UserDBContext userDB, NoteCatDBContext noteCatDB, SelectedCategoriesDBcontext userCatDB, NoteClassDBContext noteClassDB, CommentDBContext commentDB) { _context = context; this.userDB = userDB; this.userCatDB = userCatDB; this.noteCatDB = noteCatDB; this.noteClassDB = noteClassDB; this.commentDB = commentDB; }
public MasterDAO(HomeworkDBContext context) { _context = context; }