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

@@ -1,4 +1,5 @@
using System.Collections.ObjectModel;
using System.Security.Cryptography.X509Certificates;
namespace Entidades
{
@@ -24,5 +25,20 @@ namespace Entidades
{
return detalles.AsReadOnly();
}
public double MontoTotal
{
get
{
return detalles.Sum(x => x.SubTotal);
}
}
public string NombreProveedor
{
get
{
return Proveedor.Nombre;
}
}
}
}