Ejemplo n.º 1
0
        protected virtual void OnSendBusinessEvent(object sender, SendBusinessEventArgs e)
        {
            var handler = SendBusinessEvent;

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