traidas entidades de la db

Signed-off-by: fede <federico.nicolas.polidoro@gmail.com>
This commit is contained in:
2024-10-19 18:00:26 -03:00
parent ceffbf941e
commit 13ea698572
28 changed files with 600 additions and 2854 deletions
+13
View File
@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
namespace Entidades;
public partial class Estadoventum
{
public int id { get; set; }
public string? descripcion { get; set; }
public virtual ICollection<Venta> Venta { get; set; } = new List<Venta>();
}