namespace Nocr.TextMatcher.AppServices.TextMatches.Repositories; public interface ITextMatchRepository { Task Create(TextMatch textMatch, CancellationToken cancellationToken = default); Task Delete(long id, CancellationToken cancellationToken = default); Task> Get(CancellationToken cancellationToken = default); }