public ActionResult Create(Sach collection) { try { if (ModelState.IsValid) { // TODO: Add insert logic here var dao = new SachDao(); long id = dao.Insert(collection); if (id > 0) { SetAlert("Thêm thành công", "success"); return(RedirectToAction("Index", "Sach")); } else { ModelState.AddModelError("", "Thêm sản phẩm không thành công"); } } return(View(collection)); } catch { return(View("Index")); } }
public ActionResult Create(Sach sach) { SetViewBagChuDe(); SetViewBagNXB(); if (ModelState.IsValid) { var dao = new SachDao(); bool kt = dao.Insert(sach); if (kt) { return(RedirectToAction("Index", "Sach")); } else { ModelState.AddModelError("", "Thông tin có đánh dấu * bắt buộc phải nhập"); } } return(View()); }
public int Insert(Sach obj) { return(dao.Insert(obj)); }