Guest User

Untitled

a guest
May 26th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. namespace RepositoryPatternExample.Contract
  2. {
  3. public interface IEntityGeneric<TEntity>
  4. {
  5. TEntity Get(int IdClient);
  6. TEntity GetAll(int IdClient);
  7. bool Save(TEntity client);
  8. bool Update(TEntity client);
  9. bool Delete(TEntity client);
  10. }
  11. }
Add Comment
Please, Sign In to add comment