public Stripe.Customer CreateCustomer() { var options = new Stripe.CustomerCreateOptions { }; var service = new Stripe.CustomerService(); return(service.Create(options)); }
public Task <Stripe.Customer> CustomerCreateAsync(Stripe.CustomerCreateOptions options) { return(_customerService.CreateAsync(options)); }