Ejemplo n.º 1
0
 void AddNotification(NotificationEvent n)
 {
     var notification = new Notification(n.Text, n.Details);
     notifications.Add(notification);
     Messenger.Default.Send(new NotificationAdded(notification));
 }
Ejemplo n.º 2
0
 public NotificationAdded(Notification notification)
 {
     this.notification = notification;
 }