Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
| 123456789101112 |
-
- namespace Diligent.WebAPI.Business.Services.Interfaces
- {
- public interface IApplicantService
- {
- Task<List<ApplicantViewDto>> GetAll();
- Task<ApplicantViewDto> GetById(int id);
- Task CreateApplicant(ApplicantCreateDto applicantCreateDto);
- Task DeleteApplicant(int id);
- Task UpdateApplicant(int id, ApplicantUpdateDto applicantUpdateDto);
- }
- }
|