示例#1
0
 public virtual Task <BankAccount> GetAsync(string customerId, string bankAccountId, BankAccountGetOptions options = null, RequestOptions requestOptions = null, CancellationToken cancellationToken = default(CancellationToken))
 {
     return(this.GetNestedEntityAsync(customerId, bankAccountId, options, requestOptions, cancellationToken));
 }
 public virtual Task <BankAccount> GetAsync(string parentId, string id, BankAccountGetOptions options = null, RequestOptions requestOptions = null, CancellationToken cancellationToken = default)
 {
     return(this.GetNestedEntityAsync(parentId, id, options, requestOptions, cancellationToken));
 }
示例#3
0
 public virtual BankAccount Get(string customerId, string bankAccountId, BankAccountGetOptions options = null, RequestOptions requestOptions = null)
 {
     return(this.GetNestedEntity(customerId, bankAccountId, options, requestOptions));
 }
 public virtual BankAccount Get(string parentId, string id, BankAccountGetOptions options = null, RequestOptions requestOptions = null)
 {
     return(this.GetNestedEntity(parentId, id, options, requestOptions));
 }