using Diligent.WebAPI.Contracts.DTOs.SelectionProcess; namespace Diligent.WebAPI.Business.Services.Interfaces { public interface ISelectionProcessService { Task CreateAsync(SelectionProcessCreateDto model); Task DeleteAsync(int id); Task> GetAllAsync(); Task GetByIdAsync(int id); Task FinishSelectionProcess(int id); Task UpdateAsync(int id, SelectionProcessCreateDto model); } }