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