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