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