Files
lux/EgwCoreLib.Lux.Data/Repository/Stats/IStatsAggrRepository.cs
T
2026-03-21 11:33:49 +01:00

18 lines
469 B
C#

using EgwCoreLib.Lux.Data.DbModel.Stats;
using EgwCoreLib.Utils;
namespace EgwCoreLib.Lux.Data.Repository.Stats
{
public interface IStatsAggrRepository
{
#region Public Methods
Task<List<StatsAggregatedModel>> GetFiltAsync(DateTime dtStart, DateTime dtEnd);
Task<DtUtils.Periodo> GetRangeAsync();
Task<int> UpsertManyAsync(List<StatsAggregatedModel> listRecords, bool removeOld);
#endregion Public Methods
}
}