This commit is contained in:
shadowik 2023-05-14 09:32:23 +04:00
commit 97d4923c15

View File

@ -70,12 +70,12 @@ namespace BankYouBankruptRestApi.Controllers
}
}
//найти все счета, которые создал конкретный кассир
[HttpGet]
public List<AccountViewModel>? SearchAllAccounts(int cashierId)
public List<AccountViewModel>? SearchAccounts(int cashierId)
{
try
{
//попытка найти запись по переданным номеру и паролю счёта
return _accountLogic.ReadList(new AccountSearchModel
{
CashierId = cashierId
@ -87,5 +87,24 @@ namespace BankYouBankruptRestApi.Controllers
throw;
}
}
//найти все счета клиента
[HttpGet]
public List<AccountViewModel>? SearchAccountsOfCLient(int clientId)
{
try
{
//попытка найти запись по переданным номеру и паролю счёта
return _accountLogic.ReadList(new AccountSearchModel
{
ClientId = clientId
});
}
catch (Exception ex)
{
_logger.LogError(ex, "Ошибка входа в систему");
throw;
}
}
}
}