Guest User

Untitled

a guest
Jun 23rd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. public interface ICustomerPersistor
  2. {
  3. Customer Add(Customer customer);
  4. Customer Update(Customer customer);
  5. Customer Delete(Customer customer);
  6. Customer Get(Guid customerId);
  7. int Count(string whereExpression);
  8. Customer Get(string username, string password);
  9. List<Customer> Get(string whereExpression, int offset, int count);
  10. }
Add Comment
Please, Sign In to add comment