Exemple #1
0
 /** @see ControllerCorsiRemote#recuperaLezioni(int) */
 public List<Lezione> recuperaLezioni(int idC, int idU) {
   List<Lezione> l = null;
   try {
     l = ctrlCorsi.recuperaLezioni(idC, idU);
   } catch (FindException e) {
     e.printStackTrace();
   }
   return l;
 }