Skip to content

Commit

Permalink
Merge pull request #26 from 9oormthon-univ/feature/review/#23
Browse files Browse the repository at this point in the history
feat: 리뷰 서비스 초안 작성
  • Loading branch information
BinarySstar authored Nov 23, 2024
2 parents 7caeab8 + 1820687 commit 36477e0
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@ public class ReviewService {

private final ReviewRepository reviewRepository;

public ReviewResponse getAllReviews(String memberId) {
return ReviewResponse.builder()
.reviews(reviewRepository.findAllByMemberId(Long.parseLong(memberId)))
.build();
}
public void addReview() {}

public void getReviewFindByParkingId() {}

public void getReviewFindByMemberId() {}

public void deleteReview() {}


}

0 comments on commit 36477e0

Please sign in to comment.