public static double AverageMarginOfVictoryForYear(this player player, year year)
        {
            var results = player.AllResultsForYear(year);

            return(player.AverageMarginOfVictoryForYear(year, results));
        }