namespace Diligent.WebAPI.Business.Services.Interfaces { public interface ITechnologyService { Task> GetAllAsync(); Task> GetAllAsync2(); Task GetByIdAsync(int id); Task GetByIdAsync2(int id); } }