Ejemplo n.º 1
0
 public void Withdraw(double amount)
 {
     state.Withdraw(amount);
     Console.WriteLine("Withdrew {0:C} --- ", amount);
     Console.WriteLine(" Balance = {0:C}", this.Balance);
     Console.WriteLine(" Status  = {0}\n",
                       this.State.GetType().Name);
 }