TreeMap<Integer, ArrayList<ArrayList<String>>> horarios_instructores= null;
FactoryPersistencia factp = FactoryPersistencia.getInstance();
IPersistenciaController ipc = factp.getIPersistenciaController();
try {
horarios_instructores = ipc.selectAllHorariosInstructores();
} catch ( Exception e ) {
throw e;
}
return horarios_instructores;
}