using Diligent.WebAPI.Contracts.DTOs.SelectionLevel; using Diligent.WebAPI.Contracts.DTOs.SelectionProcess; using Diligent.WebAPI.Contracts.DTOs.Stats; namespace Diligent.WebAPI.Business.Services.Interfaces { public interface ISelectionLevelService { Task> GetAllAsync(); Task GetByIdAsync(int id); Task GetByIdEntity(int id); List GetFilteredLevelsAsync(SelectionProcessFilterDto filters); Task> GetCountByLevels(List statuses); } }