public ActionResult Edit(Ristorante ristorante) { if (ModelState.IsValid) { db.Entry(ristorante).State = EntityState.Modified; db.SaveChanges(); return RedirectToAction("Index"); } return View(ristorante); }
public ActionResult Create(Ristorante ristorante) { if (ModelState.IsValid) { db.Ristorantes.Add(ristorante); db.SaveChanges(); return RedirectToAction("Index"); } return View(ristorante); }