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