private void buttonGuardar_Click(object sender, EventArgs e) { using (Sistema_CalificacionEntities2 db = new Sistema_CalificacionEntities2()) { if (id == null) { nEmpleados = new EMPLEADOS(); } else { nEmpleados.NOMBRE_EMPL = textBoxNombreEmp.Text; nEmpleados.APELLIDO_EMPL = textBoxApellidoEmp.Text; nEmpleados.CEDULA_ALUMN = textBoxCedEmp.Text; nEmpleados.PASS_ALUMN = textBoxPassEmp.Text; nEmpleados.DIRECCION_EMPL = textBoxDirEmp.Text; nEmpleados.TELEFONO_EMPL = textBoxTelfEmp.Text; nEmpleados.TITULO_EMPL = textBoxTituloEmp.Text; } System.Console.WriteLine(id); if (id == null) { db.EMPLEADOS.Add(nEmpleados); } else { db.Entry(nEmpleados).State = System.Data.Entity.EntityState.Modified; } db.SaveChanges(); groupBoxDatosEmp.Hide(); Refrescar(); splitContainer1.Panel2.Show(); textBoxNombreEmp.Clear(); textBoxApellidoEmp.Clear(); textBoxCedEmp.Clear(); textBoxPassEmp.Clear(); textBoxDirEmp.Clear(); textBoxTelfEmp.Clear(); textBoxTituloEmp.Clear(); } }
private void buttonActualizar_Click(object sender, EventArgs e) { using (Sistema_CalificacionEntities2 db = new Sistema_CalificacionEntities2()) { nEmpleados.NOMBRE_EMPL = textBoxNombreEmp.Text; nEmpleados.APELLIDO_EMPL = textBoxApellidoEmp.Text; nEmpleados.CEDULA_ALUMN = textBoxCedEmp.Text; nEmpleados.PASS_ALUMN = textBoxPassEmp.Text; nEmpleados.DIRECCION_EMPL = textBoxDirEmp.Text; nEmpleados.TELEFONO_EMPL = textBoxTelfEmp.Text; nEmpleados.TITULO_EMPL = textBoxTituloEmp.Text; db.Entry(nEmpleados).State = System.Data.Entity.EntityState.Modified; db.SaveChanges(); groupBoxDatosEmp.Hide(); Refrescar(); splitContainer1.Panel2.Show(); } }