ahora esta la gestion de permisos

This commit is contained in:
2025-04-22 21:00:58 -03:00
parent e118a3acd2
commit eeb2ff1c65
5 changed files with 117 additions and 36 deletions

View File

@@ -6,4 +6,10 @@ public class PermisoBuilder : Builder<Permiso>
data.Descripcion = desc;
return this;
}
public PermisoBuilder SetID(int id)
{
data.Id = id;
return this;
}
}