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

@@ -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;
}
}
}
}