コード例 #1
0
ファイル: CustomerService.cs プロジェクト: houp/wsb2012
 public IList<Client> GetClientsWithMoreOrdersThanGivenClient(Client client)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
ファイル: OrderService.cs プロジェクト: houp/wsb2012
 public bool HaveCustomerBoughtProduct(Client client, Product product)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
ファイル: ProductService.cs プロジェクト: houp/wsb2012
 public IList<Product> GetProductsBoughtByCustomer(Client client)
 {
     throw new NotImplementedException();
 }
コード例 #4
0
ファイル: OrderService.cs プロジェクト: houp/wsb2012
 public IList<Order> GetOrdersOfClient(Client client)
 {
     throw new NotImplementedException();
 }