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]; }
public IActionResult OnGet(int id) { ProStats = repo.GetProStats(id); return(Page()); }