guardado hecho hasta ordenes de compra
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user