コード例 #1
0
 public virtual Plan Get(string id, PlanGetOptions options = null, RequestOptions requestOptions = null)
 {
     return(this.GetEntity(id, options, requestOptions));
 }
コード例 #2
0
 public virtual Task <Plan> GetAsync(string id, PlanGetOptions options = null, RequestOptions requestOptions = null, CancellationToken cancellationToken = default)
 {
     return(this.GetEntityAsync(id, options, requestOptions, cancellationToken));
 }
コード例 #3
0
ファイル: PlanService.cs プロジェクト: wilsonvargas/culqi-net
 public virtual Task <Plan> Get(string planId, PlanGetOptions options = null, RequestOptions requestOptions = null, CancellationToken cancellationToken = default)
 {
     return(GetEntity(planId, options, requestOptions, cancellationToken));
 }