Example #1
0
        public virtual void UpdateSubscriptionMethod(INotifyAction action, IRecipient recipient, params string[] senderNames)
        {
            if (action == null)
            {
                throw new ArgumentNullException("action");
            }
            if (recipient == null)
            {
                throw new ArgumentNullException("recipient");
            }
            if (senderNames == null)
            {
                throw new ArgumentNullException("senderNames");
            }

            subscriptionProvider.UpdateSubscriptionMethod(action, recipient, senderNames);
        }
 public void UpdateSubscriptionMethod(INotifyAction action, IRecipient recipient, params string[] senderNames)
 {
     provider.UpdateSubscriptionMethod(GetAdminAction(action), recipient, senderNames);
 }