Новый метод.

This commit is contained in:
Programmist73 2023-05-14 13:31:41 +04:00
parent 7fb925523d
commit 788351d3a5

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