19 lines
354 B
C#
19 lines
354 B
C#
|
|
namespace Entidades
|
|
{
|
|
public class Lote: Detalle<Producto>
|
|
{
|
|
public int IdRemito { get; set; }
|
|
public DateTime Fecha { get; set; }
|
|
public bool Habilitado { get; set; }
|
|
public string NombreProducto
|
|
{
|
|
get
|
|
{
|
|
return Producto.Nombre;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|