public ExpectedScoreDistribution(ExpectedScore expectedScore) { this.expectedScore = expectedScore; }
public static ISimulatableMatch CreateFromExpectedScore(string homeTeamName, string awayTeamName, ExpectedScore expectedScore) { return(new SimulatableMatch(homeTeamName, awayTeamName, new ExpectedScoreDistribution(expectedScore))); }