Interface PageRepository

All Superinterfaces:
GenericRepository<Page,Long>

public interface PageRepository extends GenericRepository<Page,Long>
  • Method Details

    • save

      Page save(long num)
    • findBookById

      Optional<Book> findBookById(Long id)
    • findBookChaptersById

      List<Chapter> findBookChaptersById(Long id)
    • findBookChaptersByIdAndNum

      List<Chapter> findBookChaptersByIdAndNum(Long id, long num)
    • deleteAll

      void deleteAll()