Esempio n. 1
0
 public ActionResult <List <TopTenMatch> > GetTopTenMatches(MatchDuration duration)
 {
     _matchService.HowManyGamesPlayed();
     _matchService.AverageScore();
     return(_matchService.GetTopTenMatches(duration));
 }