namespace Diligent.WebAPI.Business.Services.Interfaces { public interface IApplicantService { Task> GetFilteredApplicants(ApplicantFilterDto applicantFilterDto); Task> GetAllAdsApplicants(); Task GetById(int id); Task GetApplicantWithSelectionProcessesById(int id); Task CreateApplicant(ApplicantCreateDto applicantCreateDto); Task DeleteApplicant(int id); Task UpdateApplicant(int id, ApplicantUpdateDto applicantUpdateDto); } }