// GET: Players/Details/5
        public IActionResult Details(int?id)
        {
            if (id == null)
            {
                return(NotFound());
            }

            var player = LeagueManager.GetPlayer(id.Value);

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

            return(View(player));
        }