public function vieweducationAction()
 {
     $user = PR_Session::getSession(PR_Session::SESSION_USER);
     $UserID = $user["UserID"];
     $core = new PR_Api_Core_CandidateClass();
     $getUserArray = $core->getCandidateInfo($UserID);
     $this->view->UserArray = $getUserArray;
     $CandidateprofileID = $user["CandidateProfileID"];
     $getCandidates = $core->getCandidateProfile($CandidateprofileID);
     $this->view->getCandidates = $getCandidates;
     $listEducation = $core->getCandidateEducationList($UserID);
     $this->view->listEducation = $listEducation;
     // echo("testt:<pre>");print_r($listEducation);echo("</pre>");
     $this->render('view-education');
 }