/// <summary> /// Displays all notifications in the notification box. /// </summary> private void DisplayAllNotifications() { foreach (var notification in model.Notifications) { notificationList.DisplayNotification(notification); } }
/// <summary> /// Event called when a new notification is received. /// </summary> private void OnNotification(INotification notification) { notificationList.DisplayNotification(notification); }