Exemple #1
0
 public IQueryable <VideoGame> GetVideoGames()
 {
     return(repo.GetVideoGames());
 }
Exemple #2
0
        public ActionResult Index()
        {
            var videoGames = _videoGameRepository.GetVideoGames();

            return(View(videoGames));
        }