コード例 #1
0
        public ShowResultsModel(IStatistics statsRepo, ICourses courseRepo)
        {
            statistics = statsRepo;
            courses    = courseRepo;

            MyStatSheet = statistics.GetSheet();

            ProStatses = ProStatsRepository.Instance.GetAllProStats();

            // Simply show the first one in the list for now.
            CurrentProStatsShown = ProStatses[0];
        }
コード例 #2
0
 public IActionResult OnGet(int id)
 {
     ProStats = repo.GetProStats(id);
     return(Page());
 }