Remove get best agent

This commit is contained in:
2025-10-06 18:31:29 +07:00
parent b4ba9b93e6
commit 746308bc4f
4 changed files with 0 additions and 75 deletions

View File

@@ -6,7 +6,4 @@ public interface IAgentBalanceRepository
{
void InsertAgentBalance(AgentBalance balance);
Task<IList<AgentBalance>> GetAgentBalancesByUserId(int userId, DateTime start, DateTime? end = null);
Task<(IList<AgentBalanceHistory> result, int totalCount)> GetAllAgentBalancesWithHistory(DateTime start,
DateTime? end);
}