Example #1
0
 public IList<Client> GetClientsWithMoreOrdersThanGivenClient(Client client)
 {
     throw new NotImplementedException();
 }
Example #2
0
 public bool HaveCustomerBoughtProduct(Client client, Product product)
 {
     throw new NotImplementedException();
 }
Example #3
0
 public IList<Product> GetProductsBoughtByCustomer(Client client)
 {
     throw new NotImplementedException();
 }
Example #4
0
 public IList<Order> GetOrdersOfClient(Client client)
 {
     throw new NotImplementedException();
 }