/// <summary>
 /// This method fires the notify event
 /// </summary>
 /// <param name="notification"></param>
 protected void NotifyController(Notifing notification)
 {
     if (ViewNotification != null)
     {
         ViewNotification(new ViewNotificationEventArgs(notification));
     }
 }
Beispiel #2
0
 /// <summary>
 /// This method fires the notify event
 /// </summary>
 /// <param name="notification"></param>
 protected void NotifyController(Notifing notification)
 {
     if (ViewNotification != null)
     {
         ViewNotification(new ViewNotificationEventArgs(notification));
     }
 }
 public ViewNotificationEventArgs(Notifing notification)
 {
     this.Notification = notification;
 }
Beispiel #4
0
 public ViewNotificationEventArgs(Notifing notification)
 {
     this.Notification = notification;
 }