public function delete(Gyuser_Model_Colegas $obj)
 {
     try {
         $table = $this->getDbTable();
         $set = array('status' => 0);
         $where = array('id = ?' => $obj->getId());
         $result = $table->update($set, $where);
         return $result;
     } catch (Exception $e) {
         echo $e;
     }
 }
 public function deletecolegaajaxAction()
 {
     try {
         $request = $this->getRequest();
         if ($this->getRequest()->isPost()) {
             //$mapper = new Gyuser_Model_OtherCavesDataMapper();
             //$Obj = new Gyuser_Model_OtherCaves();
             $mapper = new Gyuser_Model_ColegasDataMapper();
             $Obj = new Gyuser_Model_Colegas();
             $Obj->setId($request->id);
             $this->_helper->layout->disableLayout();
             $this->_helper->viewRenderer->setNoRender();
             $result = $mapper->delete($Obj);
             if ($result) {
                 echo $result;
             } else {
                 echo "f";
             }
         }
     } catch (Exception $e) {
         echo $e;
     }
 }