From 788351d3a56175411b2202e247365fe5e51a3b30 Mon Sep 17 00:00:00 2001 From: Programmist73 Date: Sun, 14 May 2023 13:31:41 +0400 Subject: [PATCH] =?UTF-8?q?=D0=9D=D0=BE=D0=B2=D1=8B=D0=B9=20=D0=BC=D0=B5?= =?UTF-8?q?=D1=82=D0=BE=D0=B4.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Controllers/AccountController.cs | 23 +++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/BankYouBankrupt/BankYouBankruptRestAPI/Controllers/AccountController.cs b/BankYouBankrupt/BankYouBankruptRestAPI/Controllers/AccountController.cs index 83c9fcc..2f1c1cc 100644 --- a/BankYouBankrupt/BankYouBankruptRestAPI/Controllers/AccountController.cs +++ b/BankYouBankrupt/BankYouBankruptRestAPI/Controllers/AccountController.cs @@ -70,12 +70,12 @@ namespace BankYouBankruptRestApi.Controllers } } + //найти все счета, которые создал конкретный кассир [HttpGet] - public List? SearchAllAccounts(int cashierId) + public List? SearchAccounts(int cashierId) { try { - //попытка найти запись по переданным номеру и паролю счёта return _accountLogic.ReadList(new AccountSearchModel { CashierId = cashierId @@ -87,5 +87,24 @@ namespace BankYouBankruptRestApi.Controllers throw; } } + + //найти все счета клиента + [HttpGet] + public List? SearchAccountsOfCLient(int clientId) + { + try + { + //попытка найти запись по переданным номеру и паролю счёта + return _accountLogic.ReadList(new AccountSearchModel + { + ClientId = clientId + }); + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка входа в систему"); + throw; + } + } } }