public function interestAction()
 {
     $user = PR_Session::getSession(PR_Session::SESSION_USER);
     $UserID = $user["UserID"];
     $request = $this->getRequest();
     $params = $request->getParams();
     $api_candidate = new PR_Api_Core_CandidateClass();
     $getUserArray = $api_candidate->getCandidateInfo($UserID);
     $this->view->UserArray = $getUserArray;
     $Candidateprofile_ID = $getUserArray["CandidateProfileID"];
     $getCandidates = $api_candidate->getCandidateProfile($Candidateprofile_ID);
     $this->view->getCandidates = $getCandidates;
     $listInterest = $api_candidate->getcandidate_Interest($Candidateprofile_ID);
     $this->view->listInterest = $listInterest;
     $this->render("interest");
     //echo("testt:<pre>");print_r($listInterest);echo("</pre>");
 }