using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace PCUT.API.Managers { public interface IManager { Task> GetAllAsync(); Task GetByIdAsync(int id); Task CreateAsync(T entity); Task UpdateAsync(int id, T entity); Task DeleteAsync(int id); } }