Skip to content

Instantly share code, notes, and snippets.

@eulerfx
Created April 25, 2012 04:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eulerfx/2486375 to your computer and use it in GitHub Desktop.
Save eulerfx/2486375 to your computer and use it in GitHub Desktop.
IOrderRepository
public interface IOrderRepository
{
Order Get(string Id);
IList<Order> GetMostRecent(string customerId, int max = 20);
void Add(Order order);
void Remove(string Id);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment