Exemplo n.º 1
0
 protected virtual void OnSendBusinessEvent(SendBusinessEventArgs e)
 {
     var handler = SendBusinessEvent;
     if (handler != null)
     {
         handler(this, e);
     }
 }
Exemplo n.º 2
0
 void SendBusinessEvent(object sender, SendBusinessEventArgs e)
 {
     ClientConsole.WriteLine(e.Message, e.OutputLevel, null);
 }
Exemplo n.º 3
0
 private void SendBusinessEvent(object sender, SendBusinessEventArgs e)
 {
     _console.WriteLine(e.Message, e.OutputLevel, null);
     Trace.WriteLine(e.Message, e.OutputLevel.ToString());
 }