Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. }