me traigo todos los cambios del recuperar cuenta y set email respaldo

This commit is contained in:
2025-05-20 00:36:12 -03:00
parent 02add8907e
commit e3fa663ffa
19 changed files with 370 additions and 97 deletions
@@ -136,6 +136,9 @@ public partial class AlquilaFacilContext : DbContext
entity.Property(e => e.EmailRecuperacion)
.HasMaxLength(50)
.HasColumnName("emailRecuperacion");
entity.Property(e => e.F2a)
.HasMaxLength(6)
.HasColumnName("f2a");
entity.Property(e => e.Habilitado)
.HasDefaultValueSql("b'1'")
.HasColumnType("bit(1)")
+4 -1
View File
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
namespace Entidades;
@@ -25,6 +25,9 @@ public partial class Cliente
public string? EmailRecuperacion { get; set; }
public string? F2a { get; set; }
public virtual ICollection<Contrato> ContratoDniinquilinoNavigations { get; set; } = new List<Contrato>();
public virtual ICollection<Contrato> ContratoDnipropietarioNavigations { get; set; } = new List<Contrato>();
-13
View File
@@ -1,13 +0,0 @@
using System;
using System.Collections.Generic;
namespace Entidades;
public partial class EstadoPropiedad
{
public int Id { get; set; }
public string Descripcion { get; set; } = null!;
public virtual ICollection<Propiedade> Propiedades { get; set; } = new List<Propiedade>();
}
+1 -1
View File
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
namespace Entidades;
-23
View File
@@ -1,23 +0,0 @@
using System;
using System.Collections.Generic;
namespace Entidades;
public partial class LogDetalle
{
public DateTime Fecha { get; set; }
public long Dniusuario { get; set; }
public string NombreTabla { get; set; } = null!;
public string Columna { get; set; } = null!;
public string? ValorAnterior { get; set; }
public string? ValorNuevo { get; set; }
public int Id { get; set; }
public virtual Log Log { get; set; } = null!;
}
+1 -1
View File
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
namespace Entidades;
-13
View File
@@ -1,13 +0,0 @@
using System;
using System.Collections.Generic;
namespace Entidades;
public partial class TipoPropiedad
{
public int Id { get; set; }
public string Descripcion { get; set; } = null!;
public virtual ICollection<Propiedade> Propiedades { get; set; } = new List<Propiedade>();
}
+1 -1
View File
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
namespace Entidades;