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.

ITechnologyService.cs 358B

123456789101112
  1. namespace Diligent.WebAPI.Business.Services.Interfaces
  2. {
  3. public interface ITechnologyService
  4. {
  5. Task<List<TechnologyResponseDto>> GetAllAsync();
  6. Task<List<TechnologyApplicantViewDto>> GetAllAsync2();
  7. Task<TechnologyResponseDto> GetByIdAsync(int id);
  8. Task<TechnologyApplicantViewDto> GetByIdAsync2(int id);
  9. }
  10. }