un corte que hago a las 19hs

This commit is contained in:
2025-01-10 19:43:40 -03:00
parent 5f56b32afa
commit 7349454d8f
5 changed files with 190 additions and 46 deletions
@@ -0,0 +1,34 @@
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;
}
public NotificacionDtoBuilder SetReceptor(string receptor) {
data.Receptor = receptor;
return this;
}
}