using System.Collections.Generic; using System.Threading.Tasks; using API.DTOs.Reader; using API.Entities; namespace API.Interfaces.Repositories { public interface IChapterRepository { void Update(Chapter chapter); Task> GetChaptersByIdsAsync(IList chapterIds); Task GetChapterInfoDtoAsync(int chapterId); } }