Новый метод.
This commit is contained in:
parent
7fb925523d
commit
788351d3a5
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user