Esempio n. 1
0
 public virtual Account Get(string accountId, AccountGetOptions options = null, RequestOptions requestOptions = null)
 {
     return(this.GetEntity(accountId, options, requestOptions));
 }
Esempio n. 2
0
 public virtual Task <Account> GetAsync(string accountId, AccountGetOptions options = null, RequestOptions requestOptions = null, CancellationToken cancellationToken = default(CancellationToken))
 {
     return(this.GetEntityAsync(accountId, options, requestOptions, cancellationToken));
 }
Esempio n. 3
0
 public virtual Task <Account> Get(AccountGetOptions options = null, RequestOptions requestOptions = null, CancellationToken cancellationToken = default)
 {
     return(GetEntity(options, requestOptions, cancellationToken));
 }