public void enviarListaNombres() throws IOException { outputObj.writeObject(controladorC.getListaSeleccionados()); }
public void recibirNombres() throws IOException, ClassNotFoundException { ArrayList<String> array = (ArrayList<String>) inputObj.readObject(); controladorC.recibirLista(array); }