Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
| 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);
- }
- }
|