Exemplo n.º 1
0
        public IActionResult GetTopScores(int numResults)
        {
            var highscores = scoreDAL.GetHighScores(numResults);

            if (highscores == null)
            {
                return(NotFound());
            }

            return(Ok(highscores));
        }