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.

IApplicantService.cs 441B

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