namespace Api.Services.Contracts; public interface IJobTokenService { Task CreateTokenAsync(string cvDocumentId, string email, CancellationToken ct); Task TriggerStartAsync(string tokenId, CancellationToken ct); }