actualizacion de entidades

This commit is contained in:
2024-10-28 22:42:02 -03:00
parent c861a4b194
commit d75d6c52b6
15 changed files with 411 additions and 238 deletions
+13
View File
@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
namespace Entidades;
public partial class Estadoventa
{
public int Id { get; set; }
public string? Descripcion { get; set; }
public virtual ICollection<Venta> Venta { get; set; } = new List<Venta>();
}