export class GetPages { constructor(readerRepository) { this.readerRepository = readerRepository; } async execute(chapterId) { return await this.readerRepository.getPages(chapterId); } }