Beispiel #1
0
        public IActionResult CancelAccount(int accountGameId, string reason)
        {
            var result = _accountGameRepository.DoCancel(accountGameId, reason);

            TempData.AddResult(result);
            return(Helper.FancyBox.CloseAndRedirect(Url.Action(nameof(Waiting))));
        }