zhengyuxuan
2025-04-03 84f97d1b0b2cbf157dea598363e4cfcf8c15348a
LifePayment/LifePayment.Application.Contracts/LifePay/IStatisticsService.cs
@@ -10,11 +10,13 @@
public interface IStatisticsService : IApplicationService
{
    Task<TopStatisticsOutput> GetTopStatistics(List<string>? channleList = null);
    Task<TopStatisticsOutput> GetTopStatistics(List<string>? channleList);
    Task<ReceiptsListOutPut> GetReceiptsList(List<string>? channleList = null);
    Task StatisticsByDate(int days);
    Task<ChannelDataListOutPut> GetChannelDataList(List<string>? channleList = null);
    Task<ReceiptsListOutPut> GetReceiptsList(List<string>? channleList);
    Task<ChannlesRakeListOutPut> GetChannlesRakeList(List<string>? channleList = null);
    Task<ChannelDataListOutPut> GetChannelDataList(List<string>? channleList);
    Task<ChannlesRakeListOutPut> GetChannlesRakeList(List<string>? channleList);
}