public ActionResult GetResult(int studenId)
        {
            List <StudentViewModel> studentViewModel = studentResultManager.GetResultList(studenId);
            JsonResult jsonResult = Json(studentViewModel);

            return(jsonResult);
        }