guardado hecho hasta ordenes de compra

This commit is contained in:
fedpo
2024-08-06 06:17:48 +01:00
parent 5b7ee8c6bc
commit d9b810b550
48 changed files with 592 additions and 252 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>();