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

ISelectionLevelService.cs 361B

123456789101112
  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<SelectionProcessResposneDto> GetByIdAsync(int id);
  9. }
  10. }