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