Exemplo n.º 1
0
 public void Notify(Notification notification)
 {
     if (notification == null)
     {
         throw new ArgumentNullException("notification");
     }
     UserNotifications.Add(new UserNotification(this, notification));
 }
Exemplo n.º 2
0
 public void Notify(Notification notification)
 {
     UserNotifications.Add(new UserNotification(this, notification));
 }
Exemplo n.º 3
0
        public void Notify(Notification notification)
        {
            var userNotification = new UserNotification(this, notification);

            UserNotifications.Add(userNotification);
        }
Exemplo n.º 4
0
 internal void Notify(Notification notification)
 {
     UserNotifications.Add(new UserNotification(this, notification));
 }
Exemplo n.º 5
0
 public void Notify(Notification notification)
 {
     UserNotifications.Add(new UserNotification(notification, this));
 }