Пример #1
0
 public Page<Review> getReviews(Hotel hotel, Pageable pageable) {
   Assert.notNull(hotel, "Hotel must not be null");
   return reviewRepository.findByHotel(hotel, pageable);
 }