function getFicha()
 {
     $cEmp = new cSocios_aeconomica_dependencias();
     $cEmp->idsocios_aeconomica_dependencias($this->mClave);
     $cEmp->setData($cEmp->query()->getRow("idsocios_aeconomica_dependencias=" . $this->mClave));
     $this->mPeriodo = $cEmp->periocidad_de_avisos()->get();
     return "<table>\n\t\t\t<tr>\n\t\t\t\t<th>Clave</th>\n\t\t\t\t<td>" . $this->mClave . "</td>\n\t\t\t\t<th>Nombre</th>\n\t\t\t\t<td>" . $cEmp->descripcion_dependencia()->v() . "</td>\n\t\t\t</tr>\n\t\t\t<tr>\n\t\t\t\t<th>Domicilio</th>\n\t\t\t\t<td>" . $cEmp->domicilio_completo()->v() . "</td>\n\t\t\t\t<th>Telefono</th>\n\t\t\t\t<td>" . $cEmp->telefono()->v() . "</td>\n\t\t\t</tr>\n\t\t</table>";
 }