46 lines
1.1 KiB
C#
46 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Entidades;
|
|
|
|
public partial class Contrato
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public DateTime Fechainicio { get; set; }
|
|
|
|
public decimal Indiceactualizacion { get; set; }
|
|
|
|
public decimal Monto { get; set; }
|
|
|
|
public long? Dniinquilino { get; set; }
|
|
|
|
public long? Dnipropietario { get; set; }
|
|
|
|
public int? Idpropiedad { get; set; }
|
|
|
|
public int Cantgarantemin { get; set; }
|
|
|
|
public ulong Tieneopcionventa { get; set; }
|
|
|
|
public long? Idventa { get; set; }
|
|
|
|
public ulong Habilitado { get; set; }
|
|
|
|
public int MesesHastaAumento { get; set; }
|
|
|
|
public virtual ICollection<Defecto> Defectos { get; set; } = new List<Defecto>();
|
|
|
|
public virtual Cliente? DniinquilinoNavigation { get; set; }
|
|
|
|
public virtual Cliente? DnipropietarioNavigation { get; set; }
|
|
|
|
public virtual Propiedade? IdpropiedadNavigation { get; set; }
|
|
|
|
public virtual Venta? IdventaNavigation { get; set; }
|
|
|
|
public virtual ICollection<Garante> Dnigarantes { get; set; } = new List<Garante>();
|
|
|
|
public virtual ICollection<Canon> Idcanons { get; set; } = new List<Canon>();
|
|
}
|