refactor: eliminadas lineas en blanco

This commit is contained in:
fedpo
2024-09-30 17:39:34 +01:00
parent c8827a6e2f
commit 1ef74f18c4

View File

@@ -32,7 +32,6 @@ namespace Modelo
{ {
if (t.Lotes == null) return; if (t.Lotes == null) return;
t.Proveedor = context.Proveedores.First(x => x.Cuit == t.Proveedor.Cuit); t.Proveedor = context.Proveedores.First(x => x.Cuit == t.Proveedor.Cuit);
var listaLotes = new List<Lote>(); var listaLotes = new List<Lote>();
@@ -52,10 +51,8 @@ namespace Modelo
} }
t.Lotes = listaLotes; t.Lotes = listaLotes;
context.Remitos.Add(t); context.Remitos.Add(t);
} }