using LifePayment.Domain.Shared; using System; using System.Collections.Generic; using System.Threading.Tasks; using Volo.Abp; using Volo.Abp.Application.Services; using ZeroD.Util; namespace LifePayment.Application.Contracts; public interface IStatisticsService : IApplicationService { Task GetTopStatistics(List? channleList = null); Task GetReceiptsList(List? channleList = null); Task GetChannelDataList(List? channleList = null); Task GetChannlesRakeList(List? channleList = null); }