예제 #1
0
 protected void Notificar(string mensagem)
 {
     if (EventoNotificacao != null)
     {
         EventoNotificacao.Invoke(mensagem);
     }
 }
예제 #2
0
 protected void Notificar(string msg)
 {
     if (EventoNotificacao != null)
     {
         EventoNotificacao.Invoke(msg);
     }
 }