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