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

@@ -4,6 +4,29 @@ namespace Entidades
public class DetalleOrdenDeCompra: Detalle<Producto>
{
public int IdOrdenDeCompra { get; set; }
public Presupuesto presupuesto { get; set; }
public double MontoCU { get; set; }
public int IdPresupuesto
{
get
{
return presupuesto.Id;
}
}
public string NombreProducto
{
get
{
return Producto.Nombre;
}
}
public double SubTotal
{
get
{
return MontoCU * Cantidad;
}
}
}
}