feat: terminados 4 de 7 forms

This commit is contained in:
fedpo
2024-08-05 15:12:28 +01:00
parent b2abbf0859
commit 51cffafb9f
61 changed files with 649 additions and 876 deletions

View File

@@ -8,18 +8,6 @@ namespace Entidades
public Producto Producto { get; set; }
public long CantidadDeProductos { get; set; }
public bool Habilitado { get; set; }
public string NombreProducto
{
get { return Producto?.Nombre ?? string.Empty; }
}
public double PrecioUnitario
{
get { return Producto?.Precio ?? 0; }
}
public double Subtotal
{
get { return PrecioUnitario * CantidadDeProductos; }
}
}
}