This commit is contained in:
shadowik 2023-05-20 04:17:02 +04:00
parent 6cce05e001
commit a6fe4c431a

View File

@ -343,14 +343,7 @@ namespace BankYouBankruptClientApp.Controllers
return Redirect("ReportSuccess");
}
[HttpGet]
public IActionResult ReportSuccess() {
if (APIClient.Client == null)
{
throw new Exception("Не авторизованы");
}
return View();
}
//отчёт клиента по пополнениям
@ -539,6 +532,16 @@ namespace BankYouBankruptClientApp.Controllers
});
}
#endregion
}
#endregion
[HttpGet]
public IActionResult ReportSuccess()
{
if (APIClient.Client == null)
{
throw new Exception("Не авторизованы");
}
return View();
}
}
}