Example #1
0
 private IEnumerable <RoundPlayer> GetRoundPlayers(int gameId, int roundId = -1)
 {
     if (roundId == -1)
     {
         roundId = GetCurrentRoundId(gameId);
     }
     return(_roundPlayerRepository.GetRoundPlayersByRound(roundId));
 }