estadisticas

This commit is contained in:
2025-01-23 05:17:07 -03:00
parent 0679fcef40
commit 6592afb3a7
14 changed files with 414 additions and 87 deletions

View File

@@ -0,0 +1,17 @@
using Entidades.Informes;
namespace AlquilaFacil.Builder;
public class InformesAlquilerBuilder: Builder<InformesAlquiler>{
public InformesAlquilerBuilder SetId(long id){
data.Id = id;
return this;
}
public InformesAlquilerBuilder SetUbicacion(string Ubicacion){
data.Ubicacion = Ubicacion;
return this;
}
public InformesAlquilerBuilder SetDivisa(string Divisa){
data.Divisa = Divisa;
return this;
}
}