{ // GET: Movies public ActionResult MoviesIndex() { // Action takes a list from a class where the list of movies is built List <Movie> list = MoviesTableHelper.GetAllMovieList(); // מעביר בוויו את הרשימה return(View(list)); }