public ActionResult Edit(ccevento ccevento) { try { db.Entry(ccevento).State = EntityState.Modified; db.SaveChanges(); return RedirectToAction("Index"); } catch { return View(ccevento); } }
public ActionResult Create(ccevento ccevento) { try { db.ccevento.Add(ccevento); db.SaveChanges(); return RedirectToAction("Index"); } catch { return View(ccevento); } }