Files
Final_Das/Entidades/DetalleOrdenDeCompra.cs

38 lines
783 B
C#

using System.ComponentModel.DataAnnotations.Schema;
namespace Entidades
{
public class DetalleOrdenDeCompra: Detalle<Producto>
{
public int IdOrdenDeCompra { get; set; }
public Presupuesto presupuesto { get; set; }
public double MontoCU { get; set; }
[NotMapped]
public int IdPresupuesto
{
get
{
return presupuesto.Id;
}
}
[NotMapped]
public string NombreProducto
{
get
{
return Producto.Nombre;
}
}
[NotMapped]
public double SubTotal
{
get
{
return MontoCU * Cantidad;
}
}
}
}