private static CatalogoTurnos INSTANCE = null;
private TreeMap<Integer, Turno> turnos = null;
private CatalogoTurnos() throws Exception {
IPersistenciaController iPersistController = FactoryPersistencia.getInstance().getIPersistenciaController();
if (turnos == null){
turnos = new TreeMap<Integer, Turno>();
TreeMap<Integer, ArrayList<String>> rows_turnos = iPersistController.selectAllTurnos();
Collection<ArrayList<String>> rows_turno = rows_turnos.values();
for (ArrayList<String> datos_turno : rows_turno) {
int id_turno = Integer.valueOf(datos_turno.get(0));
int id_cliente = Integer.valueOf(datos_turno.get(1));
int id_hi = Integer.valueOf(datos_turno.get(2));