private static string GetFolder(League league) { return($@"{league.Nation.DisplayName}\{league.Tier}\{league.StartingYear}"); }
private SeasonDistribution(League league, IReadOnlyList <ISimulatableMatch> matches) { this.league = league; this.matches = matches; }
private static string GetUrl(League league) { return($"http://www.football-data.co.uk/mmz4281/{GetSeasonString(league.StartingYear)}/{league.FileName}.csv"); }