Пример #1
0
        private void btnEliminar_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrEmpty(txtExpediente.Text.Trim()))
            {
                ErrorDatos.SetError(txtExpediente, "No ha elegido \nningun pacinte");
            }
            else
            {
                bool   ResultadoOK  = false;
                string mensajeError = "";
                objPaciente = new clFachadaPaciente();
                try
                {
                    objPaciente.EliminarPaciente(Convert.ToInt32(txtExpediente.Text), 1, ref ResultadoOK, ref mensajeError);
                }
                catch (Exception error)
                {
                    MessageBox.Show(error.Message.ToString());
                }

                if (ResultadoOK)
                {
                    MessageBox.Show("Paciente Elimnado con exito \n\n En cualquier momento puede restaurar el paciente ");
                    Efecto.LimpiarForm(this);
                }
                else
                {
                    MessageBox.Show("Paciente no Eliminado");
                }
            }
        }
        private void btnEliminar_Click(object sender, EventArgs e)
        {
            if (dgvResultadoBusquedaP.SelectedRows.Count == 1)
            {
                clFachadaPaciente objPaciente = new clFachadaPaciente();
                bool   ResultadoOK            = false;
                string mensajeError           = "";

                try
                {
                    int Pa_ID = Convert.ToInt32(dgvResultadoBusquedaP.SelectedRows[0].Cells["colNoExp"].Value);
                    objPaciente.EliminarPaciente(Convert.ToInt32(Pa_ID), 1, ref ResultadoOK, ref mensajeError);
                }
                catch (Exception error)
                {
                    MessageBox.Show(error.Message.ToString());
                }

                if (ResultadoOK)
                {
                    MessageBox.Show("Paciente Elimnado con exito \n\n En cualquier momento puede restaurar el paciente ");
                    ucBusquedaP_Load(sender, e);
                }
                else
                {
                    MessageBox.Show("Paciente no Eliminado");
                }
            }
            else
            {
                // ErrorDatos.SetError(txtExpediente, "No ha elegido \nningun pacinte");
            }
        }