public void verificoDNI() { if (cln_Dao.selectCondicion("Clientes", "Nro_DNI = " + _ac.txtNroDocumento.Text) != false) { System.Windows.Forms.MessageBox.Show("EL DNI '" + _ac.txtNroDocumento.Text + "' YA PERTENECE A UN CLIENTE EXISTENTE!", "MSJ DE ERROR!", MessageBoxButtons.OK, MessageBoxIcon.Error); _ac.txtNroDocumento.Clear(); } }
public void DeleteClient(DataGridView dgv) { if (dgv.SelectedCells.Count > 0) { int selectedrowindex = dgv.SelectedCells[0].RowIndex; DataGridViewRow selectedRow = dgv.Rows[selectedrowindex]; cln_model.Id_cliente = Convert.ToInt32(selectedRow.Cells["ID_Cliente"].Value); if (cln_Dao.selectCondicion("EncabezadoFactura", "ID_Cliente = " + cln_model.Id_cliente) == false) { cln_Dao.DeleteClient(cln_model); msg.lblMsg.Text = "Cliente eliminado con exito!"; msg.ShowDialog(); cln_Dao.SearchClients(dgv); } else { MessageBox.Show("EL CLIENTE QUE DESEA BORRAR ESTA RELACIONADO CON DOCUMENTACION DENTRO DEL SISTEMA!", "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error); } } }