コード例 #1
0
        public ActionResult CurrentTopicTestResults(int curriculumChapterTopicId, TopicTypeEnum topicType)
        {
            var groupId = (int)HttpContext.Session["SelectedGroupId"];
            var model   = new CurrentTopicTestResultsModel(curriculumChapterTopicId, topicType, groupId, LmsService);

            return(View(model));
        }
コード例 #2
0
ファイル: StatsController.cs プロジェクト: nbl852003/iudico
        public ActionResult CurrentTopicTestResults(Int32 topicId)
        {
            var model = new CurrentTopicTestResultsModel(topicId, LmsService);

            return(View(model));
        }
コード例 #3
0
        public ActionResult CurrentTopicTestResults(int curriculumChapterTopicId, TopicTypeEnum topicType)
        {
            var model = new CurrentTopicTestResultsModel(curriculumChapterTopicId, topicType, LmsService);

            return(View(model));
        }