Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

IApplicantService.cs 999B

123456789101112131415161718192021
  1. using Diligent.WebAPI.Contracts.DTOs.Applicant;
  2. namespace Diligent.WebAPI.Business.Services.Interfaces
  3. {
  4. public interface IApplicantService
  5. {
  6. Task<QueryResultDto<ApplicantViewDto>> GetFilteredApplicants(ApplicantFilterDto applicantFilterDto);
  7. Task<List<AdApplicantsViewDto>> GetAllAdsApplicants(ApplicantFilterDto applicantFilterDto);
  8. Task<ApplicantViewDto> GetById(int id);
  9. Task<ApplicantViewDto> GetApplicantWithSelectionProcessesById(int id);
  10. Task ApplyForAd(ApplyForAdRequestDto request);
  11. Task DeleteApplicant(int id);
  12. Task<List<ApplicantOptionsDTO>> GetOptions();
  13. Task<ServiceResponseDTO<object>> InitializeProcess(ApplicantProcessRequestDTO model);
  14. Task ImportApplicant(List<ApplicantImportDto> request);
  15. Task<string> GetCV(string fileName);
  16. //Task CreateApplicant(ApplicantCreateDto applicantCreateDto);
  17. //Task UpdateApplicant(int id, ApplicantUpdateDto applicantUpdateDto);
  18. }
  19. }