dev #48

Merged
fede merged 88 commits from dev into main 2025-01-24 04:16:01 -03:00
2 changed files with 3 additions and 0 deletions
Showing only changes of commit 3634736b95 - Show all commits

View File

@@ -190,6 +190,7 @@ public partial class AlquilaFacilContext : DbContext
entity.Property(e => e.Indiceactualizacion)
.HasPrecision(8)
.HasColumnName("indiceactualizacion");
entity.Property(e => e.MesesDurationContrato).HasColumnType("int(11)");
entity.Property(e => e.MesesHastaAumento).HasColumnType("int(11)");
entity.Property(e => e.Monto)
.HasPrecision(12)

View File

@@ -35,6 +35,8 @@ public partial class Contrato
public int Iddivisa { get; set; }
public int MesesDurationContrato { get; set; }
public virtual ICollection<Defecto> Defectos { get; set; } = new List<Defecto>();
public virtual Cliente? DniinquilinoNavigation { get; set; }