コード例 #1
0
        public ActionResult TopicTestResults(long attemptId)
        {
            var groupId = (int)HttpContext.Session["SelectedGroupId"];
            var model   = new TopicTestResultsModel(attemptId, (List <AttemptResult>)HttpContext.Session["Attempts"], groupId, LmsService);

            return(View(model));
        }
コード例 #2
0
ファイル: StatsController.cs プロジェクト: nbl852003/iudico
        public ActionResult TopicTestResults(long attemptId)
        {
            var model = new TopicTestResultsModel(attemptId, (List <AttemptResult>)HttpContext.Session["Attempts"], LmsService);

            return(View(model));
        }