using System.ComponentModel.DataAnnotations.Schema; namespace Entidades { public class DetalleFactura: Detalle { public int IdFactura { get; set; } public double Subtotal { get { return Producto.Precio * Cantidad; } } public string NombreProducto { get { return Producto.Nombre; } } } }