Add test for executor

This commit is contained in:
2025-11-11 02:15:57 +07:00
parent d02a07f86b
commit e8e2ec5a43
18 changed files with 81418 additions and 170 deletions

View File

@@ -6,6 +6,7 @@ public interface IUserRepository
{
Task<User?> GetUserByAgentNameAsync(string agentName);
Task<User> GetUserByNameAsync(string name, bool fetchAccounts = false);
Task<User?> GetUserByIdAsync(int userId);
Task<IEnumerable<User>> GetAllUsersAsync();
Task SaveOrUpdateUserAsync(User user);
}