/**
  * Show the hotels information and its rooms and reservations
  *
  * @param name
  */
 public void showHotelInfo(String name) {
   Hotel hotel = searchHotel(name);
   System.out.println("Hotel: " + hotel.getName() + "\nDescription: " + hotel.getBrief());
   System.out.println("\nHotel Rooms: ");
   hotel.listRoom();
   System.out.println("\n-----------");
   hotel.listReservation();
   System.out.println("\n-----------");
 }