implementado hasta el ultimo paso antes de hacer la tercera notificacion

This commit is contained in:
2025-01-08 02:53:31 -03:00
parent 9993e427e0
commit cf07c51eb1
18 changed files with 482 additions and 43 deletions

View File

@@ -0,0 +1,9 @@
namespace Entidades.Dto;
public class AltaGarantesDto {
public string EmailInquilino { get; set; } = "";
public int Idpropiedad {get; set;}
public DateTime fecha { get; set;}
public List<GaranteDto> garantes{ get; set; } = new();
}

View File

@@ -1,7 +0,0 @@
namespace Entidades.Dto;
//WIP
public class CrearContratoDto {
public int Meses {get; set;}
public int Idpropiedad {get; set;}
}

View File

@@ -0,0 +1,16 @@
namespace Entidades.Dto;
public class GaranteDto {
public long Dni { get; set; }
public string Nombre { get; set; } = null!;
public string Apellido { get; set; } = null!;
public string Domicilio { get; set; } = null!;
public string Celular { get; set; } = null!;
public string Domiciliolaboral { get; set; } = null!;
}

View File

@@ -0,0 +1,10 @@
namespace Entidades.Dto;
public class PrecontratoDto {
public string EmailInquilino { get; set; } = "";
public string EmailPropietario { get; set; } = "";
public int IdPropiedad { get; set; }
public int CantidadGarantes { get; set; }
public int MesesHastaAumento { get; set; }
public bool TieneOpcionVenta { get; set; }
public DateTime fechaprimernotificacion { get; set; }
}