public ActionResult <GradeUsStandardListModel> GetAllCourseStandardList(GradeUsStandardListModel gradeUsStandardListModel) { GradeUsStandardListModel courseStandardList = new GradeUsStandardListModel(); try { courseStandardList = _gradeService.GetAllCourseStandardList(gradeUsStandardListModel); } catch (Exception es) { courseStandardList._message = es.Message; courseStandardList._failure = true; } return(courseStandardList); }