private void btnGuardar_Click(object sender, EventArgs e) { // INSERTAR EMPLEADO if (Editar == false) { try { objetoCE.Id_Empl = Convert.ToInt32(cbxEmpresa.SelectedValue); objetoCE.Nombre = txtNombre.Text; objetoCE.Apellido = txtApellido.Text; objetoCE.Cedula = txtCedula.Text; objetoCE.Dirrecion = txtDireccion.Text; objetoCE.Telefono = txtTelefono.Text; objetoCE.Email = txtEmail.Text; objetoCE.Fecha = Convert.ToDateTime(dtmFecha.Text); objetoCE.Estado = cbxEstado.Text; objetoCN.InsertarCliente(objetoCE); MessageBox.Show("Se Ingreso correctamente el Cliente"); MostrarCliente(); LimpiarForm(); } catch (Exception ex) { MessageBox.Show("No se puede Ingresar el Cliente por " + ex); } // EDITAR EMPLEADO } if (Editar == true) { { try { objetoCE.Id = Convert.ToInt32(IdCliente); objetoCE.Id_Empl = Convert.ToInt32(cbxEmpresa.SelectedValue); objetoCE.Nombre = txtNombre.Text; objetoCE.Apellido = txtApellido.Text; objetoCE.Cedula = txtCedula.Text; objetoCE.Dirrecion = txtDireccion.Text; objetoCE.Telefono = txtTelefono.Text; objetoCE.Email = txtEmail.Text; objetoCE.Fecha = Convert.ToDateTime(dtmFecha.Text); objetoCE.Estado = cbxEstado.Text; objetoCN.EditarCliente(objetoCE); MessageBox.Show("Se Editó correctamente el Cliente"); MostrarCliente(); LimpiarForm(); Editar = false; } catch (Exception ex) { MessageBox.Show("No se puede Editar el Cliente por " + ex); } } } }