public void WhenAddANotificationToNote(string noteTitle, Table notifications)
 {
     foreach (var notification in notifications.Rows)
     {
         if (notification.Keys.Contains("Selection"))
         {
             notification["Selection"] = notification["Selection"] + uniqueStamp;
         }
         ConstituentPanel.AddNotification(noteTitle, notification);
     }
 }