コード例 #1
0
 public decimal CalculateOrderDiscount(IEnumerable<Product> products, Customer customer)
 {
     // do work
     throw new NotImplementedException();
 }
コード例 #2
0
 public void Register(Customer customer)
 {
     // do work
 }
コード例 #3
0
 public void ForgotPassword(Customer customer)
 {
     // do work
 }
コード例 #4
0
 public IEnumerable<string> GatherOrderErrors(IEnumerable<Product> products, Customer customer)
 {
     // do work
     throw new NotImplementedException();
 }
コード例 #5
0
 public bool CustomerIsValid(Customer customer, Order order)
 {
     // do work
     throw new NotImplementedException();
 }