Created
September 24, 2009 18:44
-
-
Save mhinze/192948 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface IOrderRepository : IRepository<Order> | |
{ | |
Order[] GetAllOrderForCustomer(Customer customer); | |
int GetCountOfOrdersForCustomer(Customer customer); | |
bool HasOpenOrders(Customer customer); | |
Order[] GetAllOpenOrders(Customer customer); | |
Order[] GetOrdersHavingRefunds(Customer customer); | |
Order[] GetOrdersWithFundsAvailableForRefund(Customer customer); | |
Order[] GetAllSignificantOrderForCustomer(Customer customer); | |
Order[] GetBySearchCriteria(IOrderCriteria criteria); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment