por ahora todo menos orden de compra y remito

This commit is contained in:
fedpo
2024-08-05 20:27:50 +01:00
parent 51cffafb9f
commit 8e394af47a
73 changed files with 881 additions and 426 deletions

View File

@@ -1,8 +1,25 @@

using System.ComponentModel;
namespace Entidades
{
public class DetallePresupuesto: Detalle<Producto>
{
public int IdPresupuesto { get; set; }
public double MontoCUPropuesto { get; set; }
public string NombreDelProducto {
get
{
return Producto.Nombre;
}
}
public double Subtotal {
get
{
return MontoCUPropuesto * Cantidad;
}
}
}
}