traidas entidades de la db
Signed-off-by: fede <federico.nicolas.polidoro@gmail.com>
This commit is contained in:
+20
-14
@@ -5,31 +5,37 @@ namespace Entidades;
|
||||
|
||||
public partial class Contrato
|
||||
{
|
||||
public int 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 int Duracionmeses { 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 virtual Inquilino? DniinquilinoNavigation { get; set; }
|
||||
public ulong tieneopcionventa { get; set; }
|
||||
|
||||
public virtual Propietario? DnipropietarioNavigation { get; set; }
|
||||
public long? idventa { get; set; }
|
||||
|
||||
public virtual Propiedad? IdpropiedadNavigation { get; set; }
|
||||
public virtual ICollection<Defecto> Defectos { get; set; } = new List<Defecto>();
|
||||
|
||||
public virtual ICollection<Garante> Dnigarantia { get; set; } = new List<Garante>();
|
||||
public virtual Cliente? dniinquilinoNavigation { get; set; }
|
||||
|
||||
public virtual ICollection<Canon> Idcanons { get; set; } = new List<Canon>();
|
||||
public virtual Cliente? dnipropietarioNavigation { get; set; }
|
||||
|
||||
public virtual ICollection<Defecto> Iddefectos { get; set; } = new List<Defecto>();
|
||||
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>();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user