示例#1
0
 public static DebitRequest CancelDebitRequest(string pPath, string pAPIKey, int pId)
 {
     try {
         return(ApiRestServices.CancelObject <DebitRequest>(pPath + "/debit-request", pAPIKey, pId));
     }
     catch (ApplicationException ae)
     {
         throw new ApplicationException(ae.Message);
     }
 }
示例#2
0
 public static CardAdhesion CancelAdhesion(string pPath, string pAPIKey, int pId)
 {
     try {
         return(ApiRestServices.CancelObject <CardAdhesion>(pPath + "/card-adhesion", pAPIKey, pId));
     }
     catch (ApplicationException ae)
     {
         throw new ApplicationException(ae.Message);
     }
 }
示例#3
0
 public static Adhesion CancelAdhesion(string pPath, string pAPIKey, int pId)
 {
     return(ApiRestServices.CancelObject <Adhesion>(pPath + "/adhesion", pAPIKey, pId));
 }
 public static CardDebitRequest CancelDebitRequest(string pPath, string pAPIKey, int pId)
 {
     return(ApiRestServices.CancelObject <CardDebitRequest>(pPath + "/card-debit-request", pAPIKey, pId));
 }