public IActionResult PostPlayer([FromBody] Player player)
        {
            var gamePlayer1 = _gamesRepository.CreateNewGame(player.Name);

            return(new JsonResult(gamePlayer1));
        }