2026-01-18 19:20:50 +01:00
|
|
|
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);
|
2026-01-20 20:58:12 +01:00
|
|
|
Task<bool> DeleteCheckAsync(Guid checkId, Guid userId);
|
2026-01-18 19:20:50 +01:00
|
|
|
}
|