using WorkStation.Share; namespace WorkStation.Server.Services { public interface IBaseSerivice { Task AddAsync(T item); Task DelateAsync(int id); Task UpdateAsync(T item); Task GetByIdAsync(int id); Task GetAllAsync(); } }