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

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