示例#1
0
 public static PaginationResult <DebitRequest> ListDebitRequests(string pPath, string pAPIKey, string pExternalReference)
 {
     try {
         return(ApiRestServices.ListObjects <DebitRequest>(pPath + "/debit-request?external_reference=" + pExternalReference, pAPIKey));
     }
     catch (ApplicationException ae)
     {
         throw new ApplicationException(ae.Message);
     }
 }
示例#2
0
 public static PaginationResult <CardDebitRequest> ListDebitRequests(string pPath, string pAPIKey)
 {
     try {
         return(ApiRestServices.ListObjects <CardDebitRequest>(pPath + "/card-debit-request", pAPIKey));
     }
     catch (ApplicationException ae)
     {
         throw new ApplicationException(ae.Message);
     }
 }
示例#3
0
 public static PaginationResult <Adhesion> ListAdhesions(string pPath, string pParam, string pAPIKey)
 {
     try
     {
         return(ApiRestServices.ListObjects <Adhesion>(pPath + "/adhesion" + pParam, pAPIKey));
     }
     catch (ApplicationException ae)
     {
         throw new ApplicationException(ae.Message);
     }
 }
示例#4
0
 public static PaginationResult <PaymentRequest> ListPaymentRequests(string pPath, string pAPIKey)
 {
     return(ApiRestServices.ListObjects <PaymentRequest>(pPath + "/payment-request", pAPIKey));
 }
示例#5
0
 public static PaginationResult <Adhesion> ListAdhesions(string pPath, string pParam, string pAPIKey)
 {
     return(ApiRestServices.ListObjects <Adhesion>(pPath + "/adhesion" + pParam, pAPIKey));
 }
 public static PaginationResult <CardDebitRequest> ListDebitRequests(string pPath, string pAPIKey, string pExternalReference)
 {
     return(ApiRestServices.ListObjects <CardDebitRequest>(pPath + "/card-debit-request?external_reference=" + pExternalReference, pAPIKey));
 }
 public static PaginationResult <CardDebitRequest> ListDebitRequests(string pPath, string pAPIKey)
 {
     return(ApiRestServices.ListObjects <CardDebitRequest>(pPath + "/card-debit-request", pAPIKey));
 }