public void Process(HideNotification message)
 {
     if (notifications.ContainsKey(message.NotificationId))
     {
         var notificationViewModelToHide = notifications[message.NotificationId];
         CurrentVisibleNotifications.Remove(notificationViewModelToHide);
     }
 }
 public void Process(HideNotification message)
 {
 }