Skip to content

Commit

Permalink
[#198] fix(Schedule): updateIsBooking 로직 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
hyerinhwang-sailin committed Aug 29, 2024
1 parent e327ad4 commit afed125
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/com/beat/domain/schedule/domain/Schedule.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,8 @@ public void decreaseSoldTicketCount(int count) {
public void updateScheduleNumber(ScheduleNumber scheduleNumber) {
this.scheduleNumber = scheduleNumber;
}

public void updateIsBooking(boolean isBooking) {
this.isBooking = isBooking;
}
}

0 comments on commit afed125

Please sign in to comment.