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