private void buttonSave_Click(object sender, EventArgs e) { var service = new CrudeAirlineContactMethodServiceClient(); try { _contract.AirlineId = (Guid)airlinePicker.SelectedValue; _contract.ContactMethodRcd = contactMethodRefCombo.Text; _contract.ContactMethodWay = textBoxContactMethodWay.Text; _contract.Comment = textBoxComment.Text; _contract.UserId = (Guid)userPicker.SelectedValue; if (_isNew) { service.Insert(_contract); } else { service.Update(_contract); } } catch (Exception ex) { MessageBox.Show(ex.Message); } finally { service.Close(); } Close(); }
// saves the form // links: // docLink: http://sql2x.org/documentationLink/c9522930-91f8-4468-a936-8030bb2a6482 private void buttonSave_Click(object sender, EventArgs e) { var service = new CrudeAirlineContactMethodServiceClient(); try { _contract.AirlineId = (Guid)airlinePicker.SelectedValue; _contract.ContactMethodRcd = contactMethodRefCombo.Text; _contract.ContactMethodWay = textBoxContactMethodWay.Text; _contract.Comment = textBoxComment.Text; _contract.UserId = (Guid)userPicker.SelectedValue; if (_isNew) { service.Insert(_contract); } else { service.Update(_contract); } } catch (Exception ex) { if (ex == null) { } else { System.Diagnostics.Debugger.Break(); } } finally { service.Close(); } Close(); }