Files
myAi/cv-matcher-api/Services/Contracts/ICvMatcherService.cs
T
claude 64b0219038
Build and Push Docker Images / build (push) Failing after 27s
Move models in separate projects
2026-05-06 17:11:44 +03:00

12 lines
418 B
C#

using CvMatcher.Models.Requests;
using CvMatcher.Models.Responses;
namespace Api.Services.Contracts;
public interface ICvMatcherService
{
Task<CvUploadResponse> UploadCvAsync(IFormFile file, bool gdprConsent, CancellationToken ct);
Task<JobMatchResponse> MatchJobAsync(MatchJobRequest request, CancellationToken ct);
Task<FindJobsResponse> FindJobsAsync(FindJobsRequest request, CancellationToken ct);
}