Fix mediator

This commit is contained in:
2025-08-05 17:31:10 +07:00
parent 6c63b80f4a
commit 843239d187
9 changed files with 103 additions and 6 deletions

View File

@@ -247,6 +247,11 @@ public class UserService : IUserService
return user;
}
public async Task<IEnumerable<User>> GetAllUsersAsync()
{
return await _userRepository.GetAllUsersAsync();
}
public async Task SaveOrUpdateAgentSummary(AgentSummary agentSummary)
{
try