Beispiel #1
0
 public function existeProfesor($email)
 {
     $aux = FALSE;
     if (Profesor_model::existe($email, TRUE)) {
         $aux = TRUE;
     }
     return $aux;
 }