Esempio n. 1
0
        public async Task <ActionResult> UpdatePayment(int id)
        {
            var item = await PaytopiaReader.AdminGetPayment(id);

            return(View("UpdatePaymentModal", new AdminUpdatePaytopiaPaymentModel
            {
                PaymentId = item.Id,
                Status = item.Status,
                Reason = item.RefundReason
            }));
        }
Esempio n. 2
0
        public async Task <ActionResult> GetPayment(int id)
        {
            var item = await PaytopiaReader.AdminGetPayment(id);

            return(View("PaymentInfoModal", item));
        }