Esempio n. 1
0
 private static StripeSubscription TestDeleteSubscription(StripeCustomer customer, StripePayment payment)
 {
     return payment.Unsubscribe(customer.Id, true);
 }
Esempio n. 2
0
 static StripeSubscription TestDeleteSubscription(StripeCustomer customer, StripePayment payment)
 {
     StripeSubscription sub = payment.Unsubscribe (customer.ID, true);
     return sub;
 }