Beispiel #1
0
 public Collection getHighSchoolListAll() 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.getAllSchoolLabelValue(hm);
   // getSession().put("allSchoolList", schoolList);
   return schoolList;
 }
Beispiel #2
0
 public Collection getSchoolListAll() throws Exception {
   SchoolService service = new SchoolService();
   List schoolList = new ArrayList();
   schoolList = service.getAllSchoolLabelValue(null);
   return schoolList;
 }