예제 #1
0
 public void PrintMoney(Account account)
 {
     Console.WriteLine("{0}-{5} , Name: {1} , Adress: {2} , PhoneNr: {3} ,InterestAmount:{4} ",
                       account.GetType(), account.Customer.Name, account.Customer.Adress, account.Customer.PhoneNr, account.InerestAmount(7), account.Customer.CustomerType);
 }