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); } }
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); } }
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); } }
public static PaymentRequest GetPaymentRequest(string pPath, string pAPIKey, int pPaymentId) { return(ApiRestServices.GetObject <PaymentRequest>(pPath + "/payment-request", pAPIKey, pPaymentId)); }
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)); }