Files
Final_Das/Entidades/Lote.cs
2024-09-08 18:46:32 +01:00

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;
}
}
}
}