選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

ISelectionLevelService.cs 645B

12345678910111213141516
  1. using Diligent.WebAPI.Contracts.DTOs.SelectionLevel;
  2. using Diligent.WebAPI.Contracts.DTOs.SelectionProcess;
  3. using Diligent.WebAPI.Contracts.DTOs.Stats;
  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. Task<SelectionLevel> GetByIdEntity(int id);
  11. List<SelectionLevelResponseWithDataDto> GetFilteredLevelsAsync(SelectionProcessFilterDto filters);
  12. Task<List<SelectionLevelInfoDto>> GetCountByLevels(List<string> statuses);
  13. }
  14. }