コード例 #1
0
        public ActionResult Detail(int id)
        {
            var videoGames = VideoGameManager.GetVideoGames();
            var videoGame  = videoGames.FirstOrDefault(p => p.VideoGameID == id);

            return(View(videoGame));
        }
コード例 #2
0
        // GET: Home
        public ActionResult Index()
        {
            var videoGames = VideoGameManager.GetVideoGames();

            return(View(videoGames));
        }