Пример #1
0
        public Stripe.Customer CreateCustomer()
        {
            var options = new Stripe.CustomerCreateOptions {
            };
            var service = new Stripe.CustomerService();

            return(service.Create(options));
        }
Пример #2
0
 public Task <Stripe.Customer> CustomerCreateAsync(Stripe.CustomerCreateOptions options)
 {
     return(_customerService.CreateAsync(options));
 }