Beispiel #1
0
  public Collection getHighSchoolListAll2() throws Exception {
    SchoolService service = new SchoolService();
    List schoolList = new ArrayList();
    Map<String, Object> hm = new HashMap<String, Object>();
    hm.put("schoolType", Constants.SchoolType_HighSchool);
    schoolList = service.getAllSchoolLabelValue2(hm);

    return schoolList;
  }