18 lines
529 B
C#
18 lines
529 B
C#
using EgwCoreLib.Lux.Data.DbModel.Stats;
|
|
using EgwCoreLib.Utils;
|
|
|
|
namespace EgwCoreLib.Lux.Data.Repository.Stats
|
|
{
|
|
public interface IStatsDetailRepository
|
|
{
|
|
#region Public Methods
|
|
|
|
Task<List<StatsDetailModel>> GetFiltAsync(DateTime dtStart, DateTime dtEnd, string sEnvir = "", string sType = "");
|
|
|
|
Task<DtUtils.Periodo> GetRangeAsync(string sEnvir, string sType);
|
|
|
|
Task<int> UpsertManyAsync(List<StatsDetailModel> listRecords, bool removeOld);
|
|
|
|
#endregion Public Methods
|
|
}
|
|
} |