Fix pareto top orario

This commit is contained in:
Samuele Locatelli
2026-04-10 17:54:06 +02:00
parent d6bc7e313a
commit c54f491bdd
+1 -1
View File
@@ -44,7 +44,7 @@ namespace MP.IOC.Components.Pages
DateTime adesso = DateTime.Now;
var rawData = await StatsAggrService.GetFiltAsync(oggi.AddDays(-5), oggi);
ListGlobalCall = rawData.OrderByDescending(x => x.Hour).ToList();
ListParetoCall = await StatsDetService.GetParetoAsync(adesso.AddHours(-1), adesso, 5);
ListParetoCall = await StatsDetService.GetParetoAsync(adesso.AddHours(-1), adesso, 10);
paretoWeek = await StatsAggrService.GetParetoStatsWeekAsync();
}