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.
| 12345678910111213 |
- using Diligent.WebAPI.Contracts.DTOs.Applicant;
-
- 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);
- }
- }
|