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

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