Guest User

Untitled

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