public ActionResult DeleteConfirmed(string id)
        {
            NganhTheoBo nganhTheoBo = db.NganhTheoBos.Find(id);

            db.NganhTheoBos.Remove(nganhTheoBo);
            db.SaveChanges();
            return(RedirectToAction("Index"));
        }
 public ActionResult Edit([Bind(Include = "MaNganh,TeNganh")] NganhTheoBo nganhTheoBo)
 {
     if (ModelState.IsValid)
     {
         db.Entry(nganhTheoBo).State = EntityState.Modified;
         db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     return(View(nganhTheoBo));
 }
        public ActionResult Create([Bind(Include = "MaNganh,TeNganh")] NganhTheoBo nganhTheoBo)
        {
            if (ModelState.IsValid)
            {
                db.NganhTheoBos.Add(nganhTheoBo);
                db.SaveChanges();
                return(RedirectToAction("Index"));
            }

            return(View(nganhTheoBo));
        }
        // GET: Admin/NganhTheoBoes/Delete/5
        public ActionResult Delete(string id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            NganhTheoBo nganhTheoBo = db.NganhTheoBos.Find(id);

            if (nganhTheoBo == null)
            {
                return(HttpNotFound());
            }
            return(View(nganhTheoBo));
        }