コード例 #1
0
ファイル: Withdrawal.cs プロジェクト: gio-ia/testqvo
 public string Find(string withdrawalId)
 {
     SetUrl(Methods.Find, withdrawalId);
     return(Service.Get());
 }
コード例 #2
0
ファイル: Event.cs プロジェクト: gio-ia/testqvo
 public string Find(string eventId)
 {
     SetUrl(Methods.Find, eventId);
     return(Service.Get());
 }
コード例 #3
0
ファイル: Plan.cs プロジェクト: gio-ia/testqvo
 public string Find(string planId)
 {
     SetUrl(Methods.Find, planId);
     return(Service.Get());
 }
コード例 #4
0
ファイル: Transaction.cs プロジェクト: gio-ia/testqvo
 public string Find(string transactionId)
 {
     SetUrl(Methods.Find, transactionId);
     return(Service.Get());
 }
コード例 #5
0
 public string Find(string customerId, string cardId)
 {
     SetUrl(Methods.Find, customerId, cardId);
     return(Service.Get());
 }
コード例 #6
0
ファイル: Subscription.cs プロジェクト: gio-ia/testqvo
 public string Find(string subscriptionId)
 {
     SetUrl(Methods.Find, subscriptionId);
     return(Service.Get());
 }