public function __construct(StatisticsManager $statistics_data_source)
 {
     $this->statistics_data_source = $statistics_data_source;
     parent::SetUrlSegment("player-of-match");
     parent::SetTitle("Player of the match nominations");
     parent::SetDescription("All of the matches where players were awarded player of the match for their outstanding performances on the pitch.");
     parent::SetSupportsFilterByPlayer(true);
     parent::SetSupportsFilterByBattingPosition(true);
     parent::SetSupportsPagedResults(true);
     parent::SetItemTypeSingular("nomination");
     parent::SetItemTypePlural("nominations");
 }
 public function __construct(StatisticsManager $statistics_data_source)
 {
     $this->statistics_data_source = $statistics_data_source;
     parent::SetUrlSegment("bowling-performances");
     parent::SetTitle("All bowling performances");
     parent::SetDescription("See the best wicket-taking performances in all stoolball matches.");
     parent::SetSupportsFilterByPlayer(true);
     parent::SetSupportsPagedResults(true);
     parent::SetItemTypeSingular("innings");
     parent::SetItemTypePlural("innings");
     parent::SetCssClass("bowling");
 }
 public function __construct(StatisticsManager $statistics_data_source)
 {
     $this->statistics_data_source = $statistics_data_source;
     parent::SetUrlSegment("individual-scores");
     parent::SetTitle("Highest individual scores");
     parent::SetDescription("See the highest scores by individuals in a single stoolball innings.");
     parent::SetSupportsFilterByPlayer(true);
     parent::SetSupportsFilterByBattingPosition(true);
     parent::SetSupportsPagedResults(true);
     parent::SetItemTypeSingular("innings");
     parent::SetItemTypePlural("innings");
 }
 public function __construct(StatisticsManager $statistics_data_source)
 {
     $this->statistics_data_source = $statistics_data_source;
     parent::SetUrlSegment("player-performances");
     parent::SetTitle("Player performances");
     parent::SetDescription("All of the match performances by a stoolball player, summarising their batting, bowling and fielding in the match.");
     parent::SetSupportsFilterByPlayer(true);
     parent::SetSupportsFilterByBattingPosition(true);
     parent::SetSupportsPagedResults(true);
     parent::SetItemTypeSingular("performance");
     parent::SetItemTypePlural("performances");
 }