implementado hasta el ultimo paso antes de hacer la tercera notificacion
This commit is contained in:
9
Entidades/Dto/AltaGarantesDto.cs
Normal file
9
Entidades/Dto/AltaGarantesDto.cs
Normal 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();
|
||||
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
namespace Entidades.Dto;
|
||||
//WIP
|
||||
public class CrearContratoDto {
|
||||
public int Meses {get; set;}
|
||||
public int Idpropiedad {get; set;}
|
||||
|
||||
}
|
||||
16
Entidades/Dto/GaranteDto.cs
Normal file
16
Entidades/Dto/GaranteDto.cs
Normal 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!;
|
||||
|
||||
}
|
||||
10
Entidades/Dto/PrecontratoDto.cs
Normal file
10
Entidades/Dto/PrecontratoDto.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user