19 lines
334 B
C#
19 lines
334 B
C#
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Entidades
|
|
{
|
|
public class DetalleFactura: Detalle<Producto>
|
|
{
|
|
public int IdFactura { get; set; }
|
|
|
|
public double Subtotal
|
|
{
|
|
get
|
|
{
|
|
return Producto.Precio * Cantidad;
|
|
}
|
|
}
|
|
}
|
|
}
|