private void button1_Click(object sender, EventArgs e)
        {
            try
            {
                String   cedula   = textBox1.Text.Trim();
                String   nombre   = txtName.Text.Trim();
                String   apellido = txtAp.Text.Trim();
                int      tipoDoc  = comboBox1.SelectedIndex + 1;
                DateTime date     = dateTimePicker1.Value;
                bool     genero   = radioButton1.Checked;

                if (controller.actualizarCiudadano(cedula, tipoDoc, nombre, apellido, date, genero))
                {
                    MessageBox.Show("El ciudadano con el DI " + cedula + " fue actualizado!");
                    limpiar();
                }
                else
                {
                    MessageBox.Show("No se pudo actualizar");
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show("Error! " + ex);
            }
        }