diff --git a/GPW.CORE.Data/Controllers/GPWController.cs b/GPW.CORE.Data/Controllers/GPWController.cs
index f7788a4..88cfa9b 100644
--- a/GPW.CORE.Data/Controllers/GPWController.cs
+++ b/GPW.CORE.Data/Controllers/GPWController.cs
@@ -405,19 +405,19 @@ namespace GPW.CORE.Data.Controllers
IdxDipendente = idxDipendente,
DtRif = thisDay,
ListRA = rawRegAtt
- .Where(x => thisDay <= x.Inizio && x.Inizio <= thisDay.AddDays(1))
+ .Where(x => thisDay <= x.Inizio && x.Inizio < thisDay.AddDays(1))
.ToList(),
ListTimbr = rawTimbr
- .Where(x => thisDay <= x.DataOra && x.DataOra <= thisDay.AddDays(1))
+ .Where(x => thisDay <= x.DataOra && x.DataOra < thisDay.AddDays(1))
.ToList(),
TimbrExpl = rawTimbExp
.Where(x => thisDay == x.DataLav)
.FirstOrDefault(),
ListRilTemp = rawRilTemp
- .Where(x => thisDay <= x.DtRilievo && x.DtRilievo <= thisDay.AddDays(1))
+ .Where(x => thisDay <= x.DtRilievo && x.DtRilievo < thisDay.AddDays(1))
.ToList(),
ListCheckC19 = rawCheckC19
- .Where(x => thisDay <= x.DtCheck && x.DtCheck <= thisDay.AddDays(1))
+ .Where(x => thisDay <= x.DtCheck && x.DtCheck < thisDay.AddDays(1))
.ToList()
};
diff --git a/GPW.CORE.WRKLOG/GPW.CORE.WRKLOG.csproj b/GPW.CORE.WRKLOG/GPW.CORE.WRKLOG.csproj
index ceaced1..93457f6 100644
--- a/GPW.CORE.WRKLOG/GPW.CORE.WRKLOG.csproj
+++ b/GPW.CORE.WRKLOG/GPW.CORE.WRKLOG.csproj
@@ -2,7 +2,7 @@