Exemplo n.º 1
0
 public void SetPaymentType(ICustomerPayForProduct paymentType)
 {
     if (paymentType == null)
     {
         return;
     }
     this.paymentType = paymentType;
 }
Exemplo n.º 2
0
 public CustomerPayment(ICustomerPayForProduct paymentType)
 {
     this.paymentType = paymentType;
 }