private void btnInsertar_Click(object sender, EventArgs e) { Enfermo MyEnferma = baseDatos.Enfermo.Single(Enfermo => Enfermo.Cod_Hospital == txtCod_Hospital.Text); MyEnferma.inscripcion = int.Parse(txtInscripcion.Text); MyEnferma.Apellido = txtNombre.Text; MyEnferma.Direccion = txtDireccion.Text; MyEnferma.NSS = int.Parse(txtNSS.Text); MyEnferma.Fecha_Nac = dtpNac.Value; baseDatos.SubmitChanges(); cargarGrid(); }
private void btnGrabar_Click(object sender, EventArgs e) { Enfermo MyEnfermo = new Enfermo(); MyEnfermo.inscripcion = int.Parse(txtInscripcion.Text); MyEnfermo.Apellido = txtNombre.Text; MyEnfermo.Direccion = txtDireccion.Text; MyEnfermo.NSS = int.Parse(txtNSS.Text); MyEnfermo.Fecha_Nac = dtpNac.Value; if (rdMasc.Checked == true) { MyEnfermo.S = "H"; } else { MyEnfermo.S = "M"; } baseDatos.Enfermo.InsertOnSubmit(MyEnfermo); baseDatos.SubmitChanges(); cargarGrid(); }