Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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