示例#1
0
 public static Adhesion GetAdhesion(string pPath, string pAPIKey, int pId)
 {
     try {
         return(ApiRestServices.GetObject <Adhesion>(pPath + "/adhesion", pAPIKey, pId));
     }
     catch (ApplicationException ae)
     {
         throw new ApplicationException(ae.Message);
     }
 }
示例#2
0
 public static DebitRequest GetDebitRequest(string pPath, string pAPIKey, int pId)
 {
     try {
         return(ApiRestServices.GetObject <DebitRequest>(pPath + "/debit-request", pAPIKey, pId));
     }
     catch (ApplicationException ae)
     {
         throw new ApplicationException(ae.Message);
     }
 }
示例#3
0
 public static PaymentRequest GetPaymentRequest(string pPath, string pAPIKey, int pPaymentId)
 {
     try {
         return(ApiRestServices.GetObject <PaymentRequest>(pPath + "/payment-request", pAPIKey, pPaymentId));
     }
     catch (ApplicationException ae)
     {
         throw new ApplicationException(ae.Message);
     }
 }
示例#4
0
 public static PaymentRequest GetPaymentRequest(string pPath, string pAPIKey, int pPaymentId)
 {
     return(ApiRestServices.GetObject <PaymentRequest>(pPath + "/payment-request", pAPIKey, pPaymentId));
 }
示例#5
0
 public static Adhesion GetAdhesion(string pPath, string pAPIKey, int pId)
 {
     return(ApiRestServices.GetObject <Adhesion>(pPath + "/adhesion", pAPIKey, pId));
 }
 public static CardDebitRequest GetCardDebitRequest(string pPath, string pAPIKey, int pId)
 {
     return(ApiRestServices.GetObject <CardDebitRequest>(pPath + "/card-debit-request", pAPIKey, pId));
 }