Get TotalAgentCount

This commit is contained in:
2025-09-28 14:43:15 +07:00
parent 147186724e
commit c71716d5c2
5 changed files with 23 additions and 3 deletions

View File

@@ -145,4 +145,9 @@ public class AgentService : IAgentService
throw;
}
}
public async Task<int> GetTotalAgentCount()
{
return await _agentSummaryRepository.GetTotalAgentCount();
}
}