HAY UN AVANCE
This commit is contained in:
@@ -6,10 +6,12 @@
|
||||
public class Remito
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public List<Lote> lotesDeProductosEntregados = new List<Lote>();
|
||||
|
||||
public Proveedor Proveedor { get; set; }
|
||||
public int IdProveedor { get; set; }
|
||||
|
||||
private List<Lote> lotesDeProductosEntregados = new List<Lote>();
|
||||
public ReadOnlyCollection<Lote> Lotes => lotesDeProductosEntregados.AsReadOnly();
|
||||
public ReadOnlyCollection<Lote> MostrarLotes()
|
||||
{
|
||||
return lotesDeProductosEntregados.AsReadOnly();
|
||||
|
||||
Reference in New Issue
Block a user