internal bool MtdAgregarEmpleado(Cls_E_Empleado objE) { try { ClsConexionSQL objConexion = new ClsConexionSQL(); SqlCommand objComando = new SqlCommand(); objComando.Connection = objConexion.conectar(); objComando.CommandText = "USP_I_AgregarEmpleado"; objComando.CommandType = CommandType.StoredProcedure; objComando.Parameters.Add(new SqlParameter("d", SqlDbType.VarChar)); objComando.Parameters.Add(new SqlParameter("nom", SqlDbType.VarChar)); objComando.Parameters.Add(new SqlParameter("cla", SqlDbType.Int)); objComando.Parameters.Add(new SqlParameter("idc", SqlDbType.VarChar)); objComando.Parameters.Add(new SqlParameter("est", SqlDbType.VarChar)); objComando.Parameters["d"].Value = objE.Dni; objComando.Parameters["nom"].Value = objE.Nombre.ToUpper(); objComando.Parameters["cla"].Value = objE.Clave; objComando.Parameters["idc"].Value = objE.Idcargo; objComando.Parameters["est"].Value = objE.Estado; objComando.Connection = objConexion.conectar(); objComando.ExecuteNonQuery(); return(true); } catch (Exception ex) { return(false); throw ex; } }
private void DgvUsuarios_CellClick(object sender, DataGridViewCellEventArgs e) { try { if (this.dgEmpleados.Columns[e.ColumnIndex].Name == "Guardar") { if (MessageBox.Show("¿Seguro que desea Guardar?", "Alerta", MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation) == DialogResult.Yes) { { foreach (DataRow fila in empleados.Rows) { if (dgEmpleados.CurrentRow.Cells[0].Value.ToString() == fila[0].ToString()) { modificar = true; bool existir = false; Cls_E_Empleado objE = new Cls_E_Empleado(); objE.Dni = dgEmpleados.CurrentRow.Cells[0].Value.ToString(); objE.Nombre = dgEmpleados.CurrentRow.Cells[1].Value.ToString(); objE.Clave = dgEmpleados.CurrentRow.Cells[2].Value.ToString(); objE.Idcargo = int.Parse(dgEmpleados.CurrentRow.Cells[3].Value.ToString()); objE.Estado = dgEmpleados.CurrentRow.Cells[4].Value.ToString(); Cls_N_Empleados objN = new Cls_N_Empleados(); existir = objN.MtdActualizarEmpleado(objE); if (existir == true) { MessageBox.Show("Modificado exitosamente"); btnRefrescar.PerformClick(); dgEmpleados.Columns[0].ReadOnly = true; } break; } else { bool existir; Cls_E_Empleado objE = new Cls_E_Empleado(); objE.Dni = dgEmpleados.CurrentRow.Cells[0].Value.ToString(); objE.Nombre = dgEmpleados.CurrentRow.Cells[1].Value.ToString(); objE.Clave = dgEmpleados.CurrentRow.Cells[2].Value.ToString(); objE.Idcargo = int.Parse(dgEmpleados.CurrentRow.Cells[3].Value.ToString()); objE.Estado = dgEmpleados.CurrentRow.Cells[4].Value.ToString(); Cls_N_Empleados objN = new Cls_N_Empleados(); existir = objN.MtdAgregarEmpleado(objE); if (existir == true) { MessageBox.Show("Guardado exitosamente"); btnRefrescar.PerformClick(); dgEmpleados.Columns[0].ReadOnly = true; } } } } } } else if (this.dgEmpleados.Columns[e.ColumnIndex].Name == "Deshabilitar") { if (dgEmpleados.CurrentRow.Cells[3].Value.ToString() == "1") { MessageBox.Show("No se puede deshabilitar al administrador"); return; } else { dgEmpleados.CurrentRow.Cells[4].Value = "0"; mtdPintar(); } } } catch { //nada } }