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 412B

1234567891011121314
  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. Task<Technology> GetEntityByIdAsync(int id);
  10. }
  11. }