Skip to content

Commit

Permalink
Melhorando interação de saída com o usuário
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Borges committed Jun 21, 2022
1 parent 7094cdd commit 1a3ec19
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/main/java/SistemaCursos.java
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,8 @@ private void cadastrarCurso(){
curso = new Curso(codigo, nome, carga_horaria, descricao);

gerenciadorCursos.cadastrar(curso);

System.out.println("Curso cadastrado com sucesso!");
}

private boolean cursoJaCadastrado(long codigoCurso){
Expand Down Expand Up @@ -186,6 +188,8 @@ private void cadastrarAluno(){

aluno = new Aluno(nome, cpf, endereco, email, celular, matricula);
gerenciadorAlunos.cadastrar(aluno);

System.out.println("Aluno cadastrado com sucesso!");
}

private void matricularAluno(){
Expand Down Expand Up @@ -299,6 +303,8 @@ private void cadastrarSala(){

sala = new Sala(nome, local, capacidade);
gerenciadorSalas.cadastrar(sala);

System.out.println("Sala cadastrada com sucesso!");
}

private void cadastrarProfessor(){
Expand Down Expand Up @@ -331,6 +337,8 @@ private void cadastrarProfessor(){

professor = new Professor(nome, cpf, endereco, email, celular, codigo_funcionario);
gerenciadorProfessores.cadastrar(professor);

System.out.println("Professor cadastrado com sucesso!");
}

private void alocarProfessor(){
Expand Down
Binary file modified target/classes/SistemaCursos.class
Binary file not shown.

0 comments on commit 1a3ec19

Please sign in to comment.