Skip to content
Snippets Groups Projects
Commit d418848a authored by Lucas Garrido's avatar Lucas Garrido
Browse files

Añadi la funcion quitar valoracion

parent d2036106
No related branches found
No related tags found
No related merge requests found
......@@ -276,6 +276,13 @@ public class Usuario extends Persona{
}
public void quitarValoracion(int id, String nickname){
if(nickname == ""){
throw new RuntimeException("El nickname no puede ser vacia");
}
this.MiCanal.quitarValoracion(id, nickname);
}
public void quitarVideoDeListaDeReproduccion(int idLista, int idVideo){
this.MiCanal.quitarVideoDeListaDeReproduccion(idLista, idVideo);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment