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

3 years ago
3 years ago
3 years ago
3 years ago
12345678910111213141516171819
  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 ApplyForAAd(ApplyForAdRequestDto request);
  12. Task DeleteApplicant(int id);
  13. Task<List<ApplicantOptionsDTO>> GetOptions();
  14. Task<ServiceResponseDTO<object>> InitializeProcess(ApplicantProcessRequestDTO model);
  15. //Task CreateApplicant(ApplicantCreateDto applicantCreateDto);
  16. //Task UpdateApplicant(int id, ApplicantUpdateDto applicantUpdateDto);
  17. }
  18. }