private void btnGuardar_Click(object sender, EventArgs e)
        {
            if (!validarFormulario())
            {
                return;
            }

            Paciente paciente = new Paciente();

            paciente.FechaNacimiento  = dtpFechaNacimiento.Value;
            paciente.FechaAltaIngreso = dtpFechaAltaIngreso.Value;
            if (accion == "AGREGAR")
            {
                Paciente.Agregar(paciente);
            }
            else
            {
                paciente.CodigoPaciente = Convert.ToInt32(txtCodigo.Text);
                Paciente.Editar(paciente);
            }

            MessageBox.Show("Se guardó correctamente el Paciente", "Éxito", MessageBoxButtons.OK, MessageBoxIcon.Information);
            LimpiarFormulario();
        }