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