Merge branch 'main' of http://student.git.athene.tech/shadowik/CourseWork_BankYouBankrupt
This commit is contained in:
commit
97d4923c15
@ -70,12 +70,12 @@ namespace BankYouBankruptRestApi.Controllers
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//найти все счета, которые создал конкретный кассир
|
||||||
[HttpGet]
|
[HttpGet]
|
||||||
public List<AccountViewModel>? SearchAllAccounts(int cashierId)
|
public List<AccountViewModel>? SearchAccounts(int cashierId)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
//попытка найти запись по переданным номеру и паролю счёта
|
|
||||||
return _accountLogic.ReadList(new AccountSearchModel
|
return _accountLogic.ReadList(new AccountSearchModel
|
||||||
{
|
{
|
||||||
CashierId = cashierId
|
CashierId = cashierId
|
||||||
@ -87,5 +87,24 @@ namespace BankYouBankruptRestApi.Controllers
|
|||||||
throw;
|
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