Advertisement
MadCortez

Untitled

Jun 27th, 2023
579
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.27 KB | None | 0 0
  1. using System.Linq;
  2. using System.Threading.Tasks;
  3.  
  4. namespace MyCloud.Interfaces
  5. {
  6.     public interface IBaseRepository<T>
  7.     {
  8.         Task Create(T entity);
  9.  
  10.         IQueryable<T> GetAll();
  11.  
  12.         Task Delete(T entity);
  13.  
  14.         Task<T> Update(T entity);
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement