選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

IApplicantService.cs 587B

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