using ScrapperAPI.Dtos; namespace ScrapperAPI.Interfaces; public interface IExtractionModelRepository { Task CreateAsync(CreateExtractionModelDto dto, CancellationToken ct); Task> GetAllAsync(CancellationToken ct); Task GetByIdAsync(long id, CancellationToken ct); }