예제 #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));
 }
예제 #2
0
 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));
 }
예제 #4
0
 public virtual BankAccount Get(string parentId, string id, BankAccountGetOptions options = null, RequestOptions requestOptions = null)
 {
     return(this.GetNestedEntity(parentId, id, options, requestOptions));
 }