Created
December 13, 2018 10:29
-
-
Save sonOfRa/1885d58ee7590b78de6eb17e8aec712f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface AcceptedFeedbackRepository extends PagingAndSortingRepository<AcceptedFeedback, Long> { | |
boolean existsByTopicAndScaleAndAcceptedFromBeforeAndAcceptedUntilAfter( | |
FeedbackTopic topic, FeedbackScale scale, ZonedDateTime time, ZonedDateTime timeAgain); | |
default boolean wrapper(FeedbackTopic topic, FeedbackScale scale, ZonedDateTime time, ZonedDateTime timeAgain) { | |
return existsByTopicAndScaleAndAcceptedFromBeforeAndAcceptedUntilAfter(topic, scale, time, timeAgain); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment