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 807B

123456789101112131415161718
  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. }
  17. }