Example #1
0
 public boolean cadastrarUsuario(
     String nome, String email, String senha, String matricula, TipoUsuario tipoUsuario)
     throws EmailExistenteException, NomeUsuarioExistenteException {
   return cadastrarUsuarioBo.cadastrarUsuario(nome, email, senha, matricula, tipoUsuario);
 }
Example #2
0
 /** CadastrarUsuarioBo */
 public boolean cadastrarUsuario(Usuario novoUsuario)
     throws EmailExistenteException, NomeUsuarioExistenteException {
   return cadastrarUsuarioBo.cadastrarUsuario(novoUsuario);
 }