// GET: Admin/KyThu public ActionResult Index(int page = 1, int pageSize = 10) { var dao = new KyThuDao(); var model = dao.ListAllPaging(page, pageSize); return(View(model)); }
// GET: Admin/KyThu/Edit/5 public ActionResult Edit(int id) { var dao = new KyThuDao(); var content = dao.GetByID(id); return(View(content)); }
public ActionResult Edit(int id, kythu collection) { if (ModelState.IsValid) { var dao = new KyThuDao(); var result = dao.Update(collection, id); if (result) { return(RedirectToAction("Index", "KyThu")); } else { ModelState.AddModelError("", "Cập nhật không thành công"); } } return(View("Index")); }
public ActionResult Create(kythu collection) { if (ModelState.IsValid) { var dao = new KyThuDao(); long id = dao.Insert(collection); if (id > 0) { return(RedirectToAction("Index", "KyThu")); } else { ModelState.AddModelError("", "Thêm Kỳ Thu không thành công"); } } return(View("Index")); }