// GET: Admin/LoaiND public ActionResult Index() { LoaiNDDAO db = new LoaiNDDAO(); List <LoaiND> listsp = db.GetListLoaiND(); return(View(listsp)); }
public ActionResult Create(LoaiND sp) { if (ModelState.IsValid) { var dao = new LoaiNDDAO(); bool id = dao.Insert(sp); if (id) { return(RedirectToAction("Index", "LoaiND")); } else { ModelState.AddModelError("", "Tạo loại nd thất bại!"); } } return(View("Index")); }
public ActionResult Edit(LoaiND sp) { try { if (ModelState.IsValid) { var dao = new LoaiNDDAO(); var result = dao.Update(sp); if (result) { return(RedirectToAction("Index", "LoaiND")); } else { ModelState.AddModelError("", "Cập nhật thất bại!"); } } return(View("Index")); } catch { return(View()); } }
// GET: Admin/LoaiND/Edit/5 public ActionResult Edit(string id) { var sp = new LoaiNDDAO().ViewDetail(id); return(View(sp)); }