public async Task <IActionResult> GetGamePlayByPlay(int gameId) { var playByPlay = await _repo.GetGamePlayByPlay(gameId); return(Ok(playByPlay)); }