public ActionResult Edit(Restaurant restaurant)
        {
            db.Update(restaurant);
            db.SaveChanges();

            return(RedirectToAction("Index"));
        }