/// <summary>
 /// The braintree subscription api service on created.
 /// </summary>
 /// <param name="sender">
 /// The sender.
 /// </param>
 /// <param name="newEventArgs">
 /// The new event args.
 /// </param>
 private void BraintreeSubscriptionApiServiceOnCreated(BraintreeSubscriptionApiService sender, Core.Events.NewEventArgs<Subscription> newEventArgs)
 {
     ClearBraintreeCache();
 }
 /// <summary>
 /// Clears the cache with a subscription is updated
 /// </summary>
 /// <param name="sender">
 /// The sender.
 /// </param>
 /// <param name="saveEventArgs">
 /// The save event args.
 /// </param>
 private void BraintreeSubscriptionApiServiceOnUpdated(BraintreeSubscriptionApiService sender, SaveEventArgs<Subscription> saveEventArgs)
 {
     ClearBraintreeCache();
 }