コード例 #1
0
ファイル: CardService.cs プロジェクト: zgirod/stripe-dotnet
 public virtual Task <Card> CreateAsync(string customerId, CardCreateOptions options, RequestOptions requestOptions = null, CancellationToken cancellationToken = default(CancellationToken))
 {
     return(this.CreateNestedEntityAsync(customerId, options, requestOptions, cancellationToken));
 }
コード例 #2
0
ファイル: CardService.cs プロジェクト: zgirod/stripe-dotnet
 public virtual Card Create(string customerId, CardCreateOptions options, RequestOptions requestOptions = null)
 {
     return(this.CreateNestedEntity(customerId, options, requestOptions));
 }