Inizia code assisted review (non compila...)

This commit is contained in:
Samuele E. Locatelli (W11-AI)
2026-06-02 15:44:25 +02:00
parent 537ebec330
commit 712bc5e380
13 changed files with 1518 additions and 13 deletions
@@ -0,0 +1,17 @@
using MP.Core.DTO;
using MP.Data.DbModels;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace MP.Data.Repository.FluxLog
{
public interface IFluxLogRepository
{
Task<List<StatDedupDTO>> FluxLogDataReduxAsync(string idxMaccSel, List<string> fluxList, Periodo currPeriodo, Enums.ValSelection valMode, Enums.DataInterval intReq, int maxItem);
Task<List<FluxLogModel>> FluxLogGetLastFiltAsync(DateTime DtMax, DateTime DtMin, string IdxMacchina, string CodFlux, int MaxRec);
Task<List<ParetoFluxLogDTO>> FluxLogParetoAsync(string idxMacchina, DateTime dtFrom, DateTime dtTo);
}
}