public ActionResult Xoa(int id) { LoaiCongTruong xoaLoaiTL = db.LoaiCongTruongs.SingleOrDefault(n => n.MaLoaiCT == id); db.LoaiCongTruongs.Remove(xoaLoaiTL); db.SaveChanges(); TempData["thongbao"] = "<script> $('#div-pthongbao').text('Xóa thành công !'); $('#div-thongbao').show(); $('#div-thongbao').fadeOut(5000);</script>"; return(RedirectToAction("DanhSach")); }
public ActionResult ChinhSua(LoaiCongTruong loaitl) { if (KiemTraSession() == true) { return(RedirectToAction("DangNhap", "QuanTri")); } if (ModelState.IsValid) { db.Entry(loaitl).State = System.Data.Entity.EntityState.Modified; db.SaveChanges(); TempData["thongbao"] = "<script>$('#div-pthongbao').text('Cập nhật thành công !'); $('#div-thongbao').show(); $('#div-thongbao').fadeOut(5000);</script>"; } return(RedirectToAction("DanhSach")); }
public ActionResult ThemMoi(LoaiCongTruong loaitl) { if (KiemTraSession() == true) { return(RedirectToAction("DangNhap", "QuanTri")); } if (ModelState.IsValid) { db.LoaiCongTruongs.Add(loaitl); db.SaveChanges(); TempData["thongbao"] = "<script> $('#div-pthongbao').text('Tạo loại văn bản thành công !'); $('#div-thongbao').show(); $('#div-thongbao').fadeOut(5000);</script>"; } return(RedirectToAction("DanhSach")); }