Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

ISelectionLevelService.cs 466B

12345678910111213
  1. using Diligent.WebAPI.Contracts.DTOs.SelectionLevel;
  2. using Diligent.WebAPI.Contracts.DTOs.SelectionProcess;
  3. namespace Diligent.WebAPI.Business.Services.Interfaces
  4. {
  5. public interface ISelectionLevelService
  6. {
  7. Task<List<SelectionLevelResponseWithDataDto>> GetAllAsync();
  8. Task<SelectionLevelResposneDto> GetByIdAsync(int id);
  9. List<SelectionLevelResponseWithDataDto> GetFilteredLevelsAsync(SelectionProcessFilterDto filters);
  10. }
  11. }