9 lines
179 B
C#
9 lines
179 B
C#
|
|
using TrueCV.Application.Models;
|
||
|
|
|
||
|
|
namespace TrueCV.Application.Interfaces;
|
||
|
|
|
||
|
|
public interface ICVParserService
|
||
|
|
{
|
||
|
|
Task<CVData> ParseAsync(Stream fileStream, string fileName);
|
||
|
|
}
|