You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ISelectionProcessService.cs 591B

пре 3 година
123456789101112131415
  1. 
  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 ISelectionProcessService
  7. {
  8. Task<List<SelectionProcessResposneDto>> GetAllAsync();
  9. Task<bool> FinishSelectionProcess(SelectionProcessCreateDto model);
  10. Task UpdateSelectionProcessStatusAsync(int id, SelectionProcessUpdateStatusDto selectionProcessUpdateStatusDto);
  11. Task StatusUpdate(StatusChangeDTO model);
  12. Task InterviewerUpdate(InterviewerUpdateDTO model);
  13. }
  14. }