2026-01-18 19:20:50 +01:00
|
|
|
using TrueCV.Application.Models;
|
|
|
|
|
|
|
|
|
|
namespace TrueCV.Application.Interfaces;
|
|
|
|
|
|
|
|
|
|
public interface ICVParserService
|
|
|
|
|
{
|
2026-01-20 16:45:43 +01:00
|
|
|
Task<CVData> ParseAsync(Stream fileStream, string fileName, CancellationToken cancellationToken = default);
|
2026-01-18 19:20:50 +01:00
|
|
|
}
|