public Payment AddCashPayment(decimal paymentAmount) { var payment = new CashPayment(this, paymentAmount); this.Payments.Add(payment); return(payment); }
public Payment AddCashPayment(decimal paymentAmount) { var payment = new CashPayment(this, paymentAmount); this.Payments.Add(payment); return payment; }