internal static bool LostAway(this MatchDto match, int clubId) => clubId == match.AwayTeam.Id && match.Result.HomeScore > match.Result.AwayScore;
 internal static bool Drew(this MatchDto match, int clubId) => match.HasClub(clubId) && match.Result.HomeScore == match.Result.AwayScore;
 internal static bool HasClub(this MatchDto match, int clubId) => match.HomeTeam.Id == clubId || match.AwayTeam.Id == clubId;