wilian 2016-06-28 20:57:11 +00:00
parent 9ea1885f5b
commit 290aa3f1c2
2 changed files with 7 additions and 0 deletions

View File

@ -16,4 +16,6 @@ public interface NodoService {
public List<Nodo> obtenerTodos();
public Nodo obtenerId(Integer id);
}

View File

@ -32,4 +32,9 @@ public class NodoServiceImpl implements NodoService {
return ls;
}
@Override
public Nodo obtenerId(Integer id) {
return nodoDAO.obtenerID(id);
}
}