Entidades con sus propiedades sin funciones

This commit is contained in:
Ignacio Jesús Diana
2024-02-24 16:00:39 -03:00
parent 46768f4f1b
commit 712813e8cb
25 changed files with 294 additions and 1 deletions

View File

@@ -2,6 +2,9 @@
{
public class Detalle <T> where T:Producto
{
public int Id { get; set; }
public int Cantidad { get; set; }
public T Producto { get; set; }
}