Commit f216daad by Antonio Rueda

Stub para servicio buscarHoteles()

parent e741188a
......@@ -48,6 +48,12 @@ public class ServicioReservas {
throw new UnsupportedOperationException();
}
public Optional<Hotel> buscarHotel(String nombre, String localidad) {
// Por implementar
throw new UnsupportedOperationException();
}
public Reserva reserva(Cliente cliente, Hotel hotel,
LocalDate fechaInicio, LocalDate fechaFin,
int numHabSimple, int numHabDoble) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment