Ejemplo n.º 1
0
        public Payment AddCashPayment(decimal paymentAmount)
        {
            var payment = new CashPayment(this, paymentAmount);

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