public decimal GetAveragePointsPerGameForTeamFor(int teamId)
 {
     try
     {
         return((decimal)GetTotalPointsFor(teamId) / (decimal)fixtureService.CountFixturesForTeam(teamId));
     }
     catch (DivideByZeroException)
     {
         return(0);
     }
 }