using Diligent.WebAPI.Contracts.DTOs.SelectionLevel; using Diligent.WebAPI.Contracts.DTOs.SelectionProcess; namespace Diligent.WebAPI.Business.Services.Interfaces { public interface ISelectionLevelService { Task> GetAllAsync(); Task GetByIdAsync(int id); } }