예제 #1
0
파일: Bank.cs 프로젝트: mruben0/ToplabsBank
 public int paying(Debit debit, Customer customer)
 {
     customer.wealth += debit.Reverce;
     this.Amount     -= debit.Reverce;
     return(this.Amount);
 }