/**
  * Eliminar un Persona Dado el $personaId
  * 
  * @param $personaId
  */
 public function removePersona($personaId)
 {
     $responsableBean = new ResponsableBean($this->persistenceManager);
     $estudianteBean = new EstudianteBean($this->persistenceManager);
     $persona = new Persona();
     $persona->setId($personaId);
     # Validamos los campos
     if (!EntityValidator::validateId($personaId)) {
         throw new Exception(SALAS_COMP_ALERT_E_VALIDATION_FAIL, $this->ID + 136);
     }
     # Verificamos que la entidad exista.
     if (!$this->personaBean->getPersona($persona)) {
         throw new Exception(SALAS_COMP_ALERT_E_ENTITY_NOT_FOUND_FAIL, $this->ID + 137);
     }
     # Verificamos que la entidad no esté siendo utilziada en alguna otra.
     # Verificamos que la entidad no esté siendo utilziada en Responsable->responsablePersona
     $responsables = $responsableBean->getResponsablesByResponsablePersona($persona);
     if (count($responsables) > 0) {
         throw new Exception(SALAS_COMP_ALERT_E_PERSISTENCE_REMOVE_LINKED_FAIL, $this->ID + 134);
     }
     # Verificamos que la entidad no esté siendo utilziada en Estudiante->estudiantePersona
     $estudiantes = $estudianteBean->getEstudiantesByEstudiantePersona($persona);
     if (count($estudiantes) > 0) {
         throw new Exception(SALAS_COMP_ALERT_E_PERSISTENCE_REMOVE_LINKED_FAIL, $this->ID + 135);
     }
     # Eliminamos la entidad
     if (!$this->personaBean->removePersona($persona)) {
         throw new Exception(SALAS_COMP_ALERT_E_PERSISTENCE_REMOVE_FAIL, $this->ID + 138);
     }
 }