fix
This commit is contained in:
parent
747391eade
commit
e5341cfcff
1 changed files with 4 additions and 1 deletions
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue