public void AddPushNotification(string pushNotificationId)
 {
     if (!PushNotifications.Any(a => a.PushNotificationId == pushNotificationId))
     {
         PushNotifications.Add(new PushNotificationInformation {
             PushNotificationId = pushNotificationId
         });
     }
 }