Example #1
0
        public ActionResult TopicsInfo(int curriculumId)
        {
            var model = new TopicInfoModel((int)HttpContext.Session["SelectedGroupId"], curriculumId, LmsService);

            HttpContext.Session["Attempts"] = model.AllAttempts;

            return View(model);
        }
Example #2
0
        public ActionResult TopicsInfo(Int32 disciplineId)
        {
            var model = new TopicInfoModel((int)HttpContext.Session["SelectedGroupId"], disciplineId, LmsService);

            HttpContext.Session["Attempts"] = model.GetAllAttemts();

            return View(model);
        }