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.

преди 3 години
1234567891011
  1. 
  2. namespace Diligent.WebAPI.Business.Services.Interfaces
  3. {
  4. public interface ITechnologyService
  5. {
  6. Task<List<TechnologyResponseDto>> GetAllAsync();
  7. Task<TechnologyResponseDto> GetByIdAsync(int id);
  8. Task<Technology> GetEntityByIdAsync(int id);
  9. Task<List<Technology>> GetEntitiesAsync(int [] technologiesIds);
  10. }
  11. }