public void Notify(Investment investment)
 {
     Console.WriteLine("Notifying {0} that {1} was changed to {2:C}", Name, investment.Symbol, investment.GetValue);
 }
示例#2
0
 public void Notify(Investment investment)
 {
     Console.WriteLine("Notificando {0} que {1} " +
                       "teve preço alterado para {2:C}", Name, investment.Symbol, investment.Value);
 }