Exemplo n.º 1
0
 /// <summary>
 /// Send a message to the end user.
 /// </summary>
 public static void NotifyUser(string message)
 {
     Logger.Info(message);
     if (userNotificationListener != null)
     {
         userNotificationListener.NotifyUser(message);
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// Send a message to the end user.
 /// </summary>
 public static void NotifyUser(string message)
 {
     UserNotificationListener.NotifyUser(message);
 }