示例#1
0
        public async Task <bool> UpdatePayment(int id, UpdatePaymentRequest updatePaymentRequest)
        {
            try
            {
                var response = await JongSnamServices.UpdatePaymentWithHttpMessagesAsync(id, updatePaymentRequest, CustomHeaders);

                return(true);
            }
            catch (Exception ex)
            {
                return(false);

                throw ex;
            }
        }