using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Text; using System.Threading.Tasks; namespace SharedLibraryCore.Interfaces { public interface IEntityService { Task CreateProxy(); Task Create(T entity); Task Delete(T entity); Task Update(T entity); Task Get(int entityID); Task GetUnique(long entityProperty); Task> Find(Func expression); } }