/**
  * Imprime La Vista de docentes de preescolar
  * @return type
  */
 public function docentesPreescolar()
 {
     try {
         if ($this->verificarSession()) {
             $this->vista->set('titulo', 'estudiantes Preescolar');
             $salon = new Salon();
             $preescolar = $salon->leerSalonesPreescolar();
             $this->vista->set('preescolar', $preescolar);
             return $this->vista->imprimir();
         }
     } catch (Exception $exc) {
         echo 'Error de aplicacion: ' . $exc->getMessage();
     }
 }