public int TeamTotal(String teamName)
 {
     Game[] played = _data.GetAllPlayed();
     return(played.Sum(game => game.GetTeamScore(teamName)));
 }