public function removeclientAction()
 {
     $request = $this->getRequest();
     $id = $this->_helper->IdConvert->hexToStr($request->getParam('id'));
     if (empty($id)) {
         $this->_helper->messenger->error('Nie podano parametru ID');
         return $this->_helper->redirector('index');
     }
     try {
         $db = $this->_model->getDefaultAdapter();
         $db->beginTransaction();
         $model = new WsClientHasServiceSet();
         $model->deleteClient($id);
         $db->commit();
         $this->_helper->messenger->success();
         $this->_helper->redirector('index');
         return;
     } catch (Logic_Ws_Exception $e) {
         $db->rollBack();
         $this->_helper->error(MSG_ERROR, $e);
     }
 }