public function getChild($idOpcion)
 {
     $sql = "SELECT echd,echd2 FROM h2h_ProgramaOpc WHERE idOpc = {$idOpcion}";
     $datos = $this->_db->consulta($sql);
     if ($this->_db->numRows($datos) > 0) {
         $respuesta = $this->_db->fetchAll($datos);
         $CH = new bloqueoDTO();
         foreach ($respuesta as $r) {
             $CH->setChd1(trim($r['echd']));
             $CH->setChd2(trim($r['echd2']));
         }
         return $CH;
     }
     return false;
 }