avance: estado pre implementacion de notificaciones

This commit is contained in:
2025-01-06 21:22:58 -03:00
parent 5b3e65db2f
commit ed0d83dafe
14 changed files with 294 additions and 8 deletions
+30
View File
@@ -0,0 +1,30 @@
namespace AlquilaFacil.Builder;
using Entidades.Dto;
public class NotificacionDtoBuilder: Builder<NotificacionDto> {
public NotificacionDtoBuilder SetRemitente(string remitente) {
data.Remitente = remitente;
return this;
}
public NotificacionDtoBuilder SetAccion(string accion) {
data.Accion = accion;
return this;
}
public NotificacionDtoBuilder SetMensaje(string mensaje) {
data.Mensaje = mensaje;
return this;
}
public NotificacionDtoBuilder SetFecha(DateTime? fecha) {
data.Fecha = fecha;
return this;
}
public NotificacionDtoBuilder SetPropiedad(string propiedad) {
data.Propiedad = propiedad;
return this;
}
}