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

1234567891011121314
  1. namespace Diligent.WebAPI.Business.Services.Interfaces
  2. {
  3. public interface IApplicantService
  4. {
  5. Task<QueryResultDto<ApplicantViewDto>> GetFilteredApplicants(ApplicantFilterDto applicantFilterDto);
  6. Task<List<AdApplicantsViewDto>> GetAllAdsApplicants(ApplicantFilterDto applicantFilterDto);
  7. Task<ApplicantViewDto> GetById(int id);
  8. Task<ApplicantViewDto> GetApplicantWithSelectionProcessesById(int id);
  9. Task CreateApplicant(ApplicantCreateDto applicantCreateDto);
  10. Task DeleteApplicant(int id);
  11. Task UpdateApplicant(int id, ApplicantUpdateDto applicantUpdateDto);
  12. }
  13. }