export class GetPage { constructor(readerRepository) { this.readerRepository = readerRepository; } async execute(chapterId, pageNumber) { return await this.readerRepository.getPage(chapterId, pageNumber); } }