14 lines
461 B
C#
14 lines
461 B
C#
|
|
using TrueCV.Application.DTOs;
|
||
|
|
using TrueCV.Application.Models;
|
||
|
|
|
||
|
|
namespace TrueCV.Application.Interfaces;
|
||
|
|
|
||
|
|
public interface ICVCheckService
|
||
|
|
{
|
||
|
|
Task<Guid> CreateCheckAsync(Guid userId, Stream file, string fileName);
|
||
|
|
Task<CVCheckDto?> GetCheckAsync(Guid id);
|
||
|
|
Task<CVCheckDto?> GetCheckForUserAsync(Guid id, Guid userId);
|
||
|
|
Task<List<CVCheckDto>> GetUserChecksAsync(Guid userId);
|
||
|
|
Task<VeracityReport?> GetReportAsync(Guid checkId, Guid userId);
|
||
|
|
}
|