fix-dga #7

Merged
bcastro merged 3 commits from fix-dga into integracion-dga 2025-07-17 14:09:44 -04:00
Showing only changes of commit e5341cfcff - Show all commits

View file

@ -43,7 +43,10 @@ namespace BLL.Recuperacion_DGA
{ {
var mediciones = await _dGAMedicionRepository.ObtenerMedicionesPorLoteAsync(pageNumber); var mediciones = await _dGAMedicionRepository.ObtenerMedicionesPorLoteAsync(pageNumber);
if (mediciones == null || !mediciones.Any()){ break; } if (mediciones == null || mediciones.Count == 0)
{
break;
}
foreach (var medicion in mediciones) foreach (var medicion in mediciones)
{ {