Ejemplo n.º 1
0
        public async Task <IActionResult> PaymentFailed(long paymentId)
        {
            await _paymentAppService.PaymentFailed(paymentId);

            if (AbpSession.UserId.HasValue)
            {
                return(RedirectToAction("Index", "SubscriptionManagement", new { area = "App" }));
            }

            return(RedirectToAction("Index", "Home", new { area = "App" }));
        }