public ActionResult GetCourseById(int studtId)
        {
            List <StudentViewModel> studentViewModel = studentResultManager.GetCourseById(studtId);
            JsonResult jsonResult = Json(studentViewModel);

            return(jsonResult);
        }