private void button1_Click(object sender, EventArgs e)
        {
            try
            {
                int id = int.Parse(textBox6.Text);
                string nome = textBox1.Text;
                string data_inicio = (textBox2.Text);
                string data_fim = (textBox3.Text);
                string local = textBox4.Text;
                int id_responsavel = int.Parse(textBox5.Text);

                Evento Evento = new Evento(id, nome, data_inicio, data_fim, local, id_responsavel);

                EventoDAO EventoDAO = new EventoDAO();

                EventoDAO.Incluir(Evento);

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