public void SetPaymentType(ICustomerPayForProduct paymentType) { if (paymentType == null) { return; } this.paymentType = paymentType; }
public CustomerPayment(ICustomerPayForProduct paymentType) { this.paymentType = paymentType; }