public ActionResult ModifierRestaurant(Resto resto) { if (!ModelState.IsValid) { return View(resto); } dal.ModifierRestaurant(resto.Id, resto.Nom, resto.Telephone); return RedirectToAction("Index"); }
public ActionResult CreerRestaurant(Resto resto) { if (dal.RestaurantExiste(resto.Nom)) { ModelState.AddModelError("Nom", "Ce nom de restaurant existe déjà"); return View(resto); } if (!ModelState.IsValid) return View(resto); dal.CreerRestaurant(resto.Nom, resto.Telephone); return RedirectToAction("Index"); }