public void Notify(Notification notification) { if (notification == null) { throw new ArgumentNullException("notification"); } UserNotifications.Add(new UserNotification(this, notification)); }
public void Notify(Notification notification) { UserNotifications.Add(new UserNotification(this, notification)); }
public void Notify(Notification notification) { var userNotification = new UserNotification(this, notification); UserNotifications.Add(userNotification); }
internal void Notify(Notification notification) { UserNotifications.Add(new UserNotification(this, notification)); }
public void Notify(Notification notification) { UserNotifications.Add(new UserNotification(notification, this)); }