using RealCV.Application.Models; namespace RealCV.Application.Interfaces; public interface ICVParserService { Task ParseAsync(Stream fileStream, string fileName, CancellationToken cancellationToken = default); }