예제 #1
0
 public void Notificar(Investimento investimento)
 {
     Eventos.Adicionar($"Notificando {Nome} que {investimento.Simbolo} teve preço alterado para {investimento.Valor}");
 }
예제 #2
0
 public void Notificar(Investimento investimento)
 {
     Console.WriteLine("Notificando {0} que {1} " +
                       "teve preço alterado para {2:C}", Nome, investimento.Simbolo, investimento.Valor);
 }