add accounts by role

This commit is contained in:
2025-09-21 11:57:48 +03:30
parent f527c59603
commit e79dabbb2d
3 changed files with 32 additions and 1 deletions

View File

@@ -799,4 +799,8 @@ public class AccountApplication : IAccountApplication
return _accountRepository.CheckExistClientAccount(userName);
}
public List<AccountViewModel> GetAdminAccountsNew()
{
return _accountRepository.GetAdminAccountsNew();
}
}