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

View File

@@ -5,37 +5,37 @@ namespace Entidades;
public partial class Contrato
{
public long id { get; set; }
public long Id { get; set; }
public DateTime fechainicio { get; set; }
public DateTime Fechainicio { get; set; }
public decimal indiceactualizacion { get; set; }
public decimal Indiceactualizacion { get; set; }
public decimal monto { get; set; }
public decimal Monto { get; set; }
public long? dniinquilino { get; set; }
public long? Dniinquilino { get; set; }
public long? dnipropietario { get; set; }
public long? Dnipropietario { get; set; }
public int? idpropiedad { get; set; }
public int? Idpropiedad { get; set; }
public int cantgarantemin { get; set; }
public int Cantgarantemin { get; set; }
public ulong tieneopcionventa { get; set; }
public ulong Tieneopcionventa { get; set; }
public long? idventa { get; set; }
public long? Idventa { get; set; }
public virtual ICollection<Defecto> Defectos { get; set; } = new List<Defecto>();
public virtual Cliente? dniinquilinoNavigation { get; set; }
public virtual Cliente? DniinquilinoNavigation { get; set; }
public virtual Cliente? dnipropietarioNavigation { get; set; }
public virtual Cliente? DnipropietarioNavigation { get; set; }
public virtual Propiedade? idpropiedadNavigation { get; set; }
public virtual Propiedade? IdpropiedadNavigation { get; set; }
public virtual Venta? idventaNavigation { get; set; }
public virtual Venta? IdventaNavigation { get; set; }
public virtual ICollection<Garante> dnigarantes { get; set; } = new List<Garante>();
public virtual ICollection<Garante> Dnigarantes { get; set; } = new List<Garante>();
public virtual ICollection<Canon> idcanons { get; set; } = new List<Canon>();
public virtual ICollection<Canon> Idcanons { get; set; } = new List<Canon>();
}