public SubscriptionNotification(Account account, Subscription subscription,
                                 SubscriptionNotificationType notificationType)
     : base(account)
 {
     Subscription = subscription;
     SubscriptionNotificationType = notificationType;
 }
 public SubscriptionNotification(XDocument document, SubscriptionNotificationType notificationType)
     : base(document)
 {
     Subscription = new Subscription(document);
     SubscriptionNotificationType = notificationType;
 }