guardado hecho hasta ordenes de compra

This commit is contained in:
2024-08-11 18:25:32 -03:00
parent 33988cb3db
commit 1fc1a0a2a2
47 changed files with 693 additions and 206 deletions

View File

@@ -10,6 +10,13 @@ namespace Entidades
public bool Aceptado { get; set; }
public Proveedor Proveedor { get; set; }
public string ProveedorNombre
{
get
{
return Proveedor.Nombre;
}
}
private List<DetallePresupuesto> detalles = new List<DetallePresupuesto>();