Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

IApplicantService.cs 392B

1234567891011
  1. namespace Diligent.WebAPI.Business.Services.Interfaces
  2. {
  3. public interface IApplicantService
  4. {
  5. Task<List<ApplicantViewDto>> GetAll();
  6. Task<ApplicantViewDto> GetById(int id);
  7. Task CreateApplicant(ApplicantCreateDto applicantCreateDto);
  8. Task DeleteApplicant(int id);
  9. Task UpdateApplicant(int id, ApplicantUpdateDto applicantUpdateDto);
  10. }
  11. }