사용자 정의 repository의 implementation class들을 더 작은 클래스들로 쪼개는 방법
만약 예를 들어,
repository: WorkRepository
Custom Repository interface: WorkRepositoryCustom
Custom Repository interface Implementation: WorkRepositoryImpl
정도로 구성되 있을 경우, WorkRepositoryImpl (또는 WorkRepositoryCustom interface)가 너무 커져서 별도의 작은 클래스로 쪼개려고 시도중인데요,
추천하실 만한 방법이 있을까요?