You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ISelectionLevelService.cs 466B

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