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