public ActionResult Delete(int id)
        {
            Restaurants thisPlace = Restaurants.Find(id);

            thisPlace.Delete();

            return(RedirectToAction("ViewAll"));
        }