18 lines
469 B
C#
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
|
|
}
|
|
} |