-
- namespace Diligent.WebAPI.Business.Services.Interfaces
- {
- public interface ITechnologyService
- {
- Task<List<TechnologyResponseDto>> GetAllAsync();
- Task<TechnologyResponseDto> GetByIdAsync(int id);
- Task<Technology> GetEntityByIdAsync(int id);
- Task<List<Technology>> GetEntitiesAsync(int [] technologiesIds);
- }
- }
|