public void cadastraAluno(Aluno aluno)
        {
            AlunoRepositorio.AbreConexaoBanco();

            AlunoRepositorio.comando.CommandText = "insert into aluno (nome, data_nascimento, id_curso) " +
                                                   "values ('" + aluno.Nome + "', '" + aluno.Data_nascimento.ToString("yyyy-MM-dd") + "', '" + aluno.Curso.Id_curso + "' )";

            AlunoRepositorio.executaComandoInsertDeleteUpdate(AlunoRepositorio.comando);

            AlunoRepositorio.FechaConexaoBanco();
        }
        public int excluiAluno(string matricula)
        {
            AlunoRepositorio.AbreConexaoBanco();

            AlunoRepositorio.comando.CommandText = "delete from aluno where aluno.matricula = '" + matricula + "'";

            int x = AlunoRepositorio.executaComandoInsertDeleteUpdate(comando);

            AlunoRepositorio.FechaConexaoBanco();

            return(x);
        }
        public int editaAluno(Aluno aluno)
        {
            AlunoRepositorio.AbreConexaoBanco();

            AlunoRepositorio.comando.CommandText = "update aluno set nome = '" + aluno.Nome + "', data_nascimento = '" + aluno.Data_nascimento.ToString("yyyy-MM-dd") + "'," +
                                                   "id_curso = '" + aluno.Curso.Id_curso + "' where (matricula = '" + aluno.Matricula + "')";

            int x = AlunoRepositorio.executaComandoInsertDeleteUpdate(comando);

            AlunoRepositorio.FechaConexaoBanco();

            return(x);
        }
        public void ligaProfessorAreaPesquisa(string matriculaProfessor, List <AreaPesquisa> listaAreaPesquisa)
        {
            ProfessorAreaPesquisaRepositorio.AbreConexaoBanco();

            foreach (AreaPesquisa item in listaAreaPesquisa)
            {
                ProfessorAreaPesquisaRepositorio.comando.CommandText = "insert into professor_area_pesquisa (professor_matricula, id_area_pesquisa) " +
                                                                       "values ('" + matriculaProfessor + "', '" + item.Id_area_pesquisa + "')";

                AlunoRepositorio.executaComandoInsertDeleteUpdate(AlunoRepositorio.comando);
            }

            AlunoRepositorio.FechaConexaoBanco();
        }
        public void cadastraAluno(int matricula)
        {
            if (matricula < 1)
            {
                throw new Exception("É necessário informar a matricula do aluno");
            }

            AlunoRepositorio.AbreConexaoBanco();

            AlunoRepositorio.comando.CommandText = "insert into aluno (matricula) " +
                                                   "values ('" + matricula + "')";

            AlunoRepositorio.executaComandoInsertDeleteUpdate(AlunoRepositorio.comando);

            AlunoRepositorio.FechaConexaoBanco();
        }