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