示例#1
0
 public void PayInterest()
 {
     _state.PayInterest();
     Console.WriteLine("Interest Paid --- ");
     Console.WriteLine(" Balance = {0:C}", this.Balance);
     Console.WriteLine(" Status = {0}\n",
                       this.State.GetType().Name);
 }