You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IApplicantService.cs 999B

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