Exemplo n.º 1
0
 public IReadOnlyCollection <ThemePontuation> GetPontuationsInRound(int roundNumber)
 {
     return(Pontuations.Where(x => x.RoundNumber == roundNumber)
            .SelectMany(x => x.ThemesPontuations)
            .ToList());
 }
Exemplo n.º 2
0
 public RoundPontuations GetPontuationInRound(int roundNumber) =>
 Pontuations.FirstOrDefault(p => p.RoundNumber == roundNumber);