private void button1_Click(object sender, EventArgs e)
        {
            try
            {
                int id = int.Parse(textBox1.Text);
                string nome = textBox2.Text;
                string email = (textBox3.Text);
                int estudante = int.Parse(textBox4.Text);
                int id_tipo_participante =int.Parse(textBox5.Text);

                Participante Participante = new Participante(id, nome, email, estudante, id_tipo_participante);

                ParticipanteDAO ParticipanteDAO = new ParticipanteDAO();

                ParticipanteDAO.Incluir(Participante);

                MessageBox.Show("Participante cadastrado com sucesso!");
            }
            catch (OracleException ex)
            {
                MessageBox.Show(ex.Message);
            }
        }