/** @see ControllerMaterialiRemote#eliminaMateriale(int) */ public void eliminaMateriale(int id) { try { ctrlMateriali.eliminaMateriale(id); } catch (DeleteException e) { e.printStackTrace(); } catch (FindException e) { e.printStackTrace(); } }
/** @see ControllerLezioniRemote#eliminaLezione(int) */ public void eliminaLezione(int id) { try { ctrlLezioni.eliminaLezione(id); } catch (FindException e) { e.printStackTrace(); } catch (DeleteException e) { e.printStackTrace(); } }