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; + } + } } }