public JsonResult GetRegNoByStudentInfo(int registrationNo)
        {
            List <StudentResultViewModel> studentResultViewModels = studentResultManager.GetRegNoByStudentResultInfo(registrationNo);

            return(Json(studentResultViewModels));
        }