Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

ISelectionLevelService.cs 518B

1234567891011121314
  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. Task<SelectionLevel> GetByIdEntity(int id);
  10. List<SelectionLevelResponseWithDataDto> GetFilteredLevelsAsync(SelectionProcessFilterDto filters);
  11. }
  12. }