public ActionResult ChiTietSuaMon(Mon mon) { repository.UpdateMon(mon); repository.Save(); ViewBag.Mess = "Sửa thành công"; return View(); }
public void AddMon(Mon mon) { db.Mons.Add(mon); }
public void UpdateMon(Mon mon) { db.Entry(mon).State = System.Data.EntityState.Modified; }
public void DeleteMon(Mon mon) { var m = db.Mons.Find(mon.Id); db.Mons.Remove(m); }
public ActionResult ThemMon(Mon mon) { if (ModelState.IsValid) { repository.AddMon(mon); repository.Save(); ViewBag.Mess = "Đã thêm thành công"; return View(); } ViewBag.Mess = "Dữ liệu nhập không chính xác, vui lòng nhập lại"; return View(); }
public ActionResult DeleteMon(Mon mon) { repository.DeleteMon(mon); repository.Save(); return RedirectToAction("SuaMon", "Admin"); }