23 lines
437 B
C#
23 lines
437 B
C#
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Entidades
|
|
{
|
|
public class Lote: Detalle<Producto>
|
|
{
|
|
public int IdRemito { get; set; }
|
|
public DateTime Fecha { get; set; }
|
|
public bool Habilitado { get; set; }
|
|
|
|
[NotMapped]
|
|
public string NombreProducto
|
|
{
|
|
get
|
|
{
|
|
return Producto.Nombre;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|