public async Task <ActionResult <Hotel> > GetAllRoomsInHotel(int hotelId)
 {
     return(Ok(await _hotel.GetAllRoomsInHotel(hotelId)));
 }