public ActionResult List()
        {
            ToursDBEntities    tourDB = new ToursDBEntities();
            IEnumerable <Tour> tours  = tourDB.Tours.ToList();

            return(View(tours));
        }