Example #1
0
 public int paying(Debit debit, Customer customer)
 {
     customer.wealth += debit.Reverce;
     this.Amount     -= debit.Reverce;
     return(this.Amount);
 }