Guest User

Untitled

a guest
May 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. public interface IRepository<TEntity> : IQueryable<TEntity> {
  2. void Add(TEntity entity);
  3. void Remove(TEntity entity);
  4. }
Add Comment
Please, Sign In to add comment