public List<HotelDTO> listaHotel() {
   return showHotel.listaHotel();
 }
 public List<TipoCamere_HotelDTO> getCamere() {
   HotelDTO h = getHotelPerParametro();
   camere = showHotel.camereHotel(h.getIdHotel());
   return camere;
 }
 public HotelDTO getHotelPerParametro() {
   HotelDTO h = showHotel.getHotel(nomeHotel);
   return h;
 }