Esempio n. 1
0
 public ActionResult CurrentTopicTestResults(Int32 topicId)
 {
     var model = new CurrentTopicTestResultsModel(topicId, LmsService);
     return View(model);
 }
Esempio n. 2
0
 public ActionResult CurrentTopicTestResults(int curriculumChapterTopicId, TopicTypeEnum topicType)
 {
     var model = new CurrentTopicTestResultsModel(curriculumChapterTopicId, topicType, LmsService);
     return View(model);
 }
Esempio n. 3
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);
 }