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