// shows the form in edit modus // links: // docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77 public void ShowAsEdit(System.Guid airportRunwayId) { var service = new CrudeAirportRunwayServiceClient(); _isNew = false; try { _contract = service.FetchByAirportRunwayId(airportRunwayId); airportPicker.SelectedValue = _contract.AirportId; textBoxDirection.Text = _contract.Direction; textBoxDimensions.Text = _contract.Dimensions; textBoxSurface.Text = _contract.Surface; textBoxInstrumentLandingSystemType.Text = _contract.InstrumentLandingSystemType; userPicker.SelectedValue = _contract.UserId; _contract.DateTime = DateTime.UtcNow; dateTimePickerDateTime.Text = _contract.DateTime.ToString(); Show(); } catch (Exception ex) { if (ex == null) { } else { System.Diagnostics.Debugger.Break(); } } finally { service.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 CrudeAirportRunwayServiceClient(); try { _contract.AirportId = (Guid)airportPicker.SelectedValue; _contract.Direction = textBoxDirection.Text; _contract.Dimensions = textBoxDimensions.Text; _contract.Surface = textBoxSurface.Text; _contract.InstrumentLandingSystemType = textBoxInstrumentLandingSystemType.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(); }
// refresh the grid // links: // docLink: http://sql2x.org/documentationLink/a90065e7-8ace-4de7-9367-d4653a7c637f public void RefreshCrudeAirportRunway() { var airportRunway = new CrudeAirportRunwayServiceClient(); try { var bindingSource = new BindingSource(); bindingSource.DataSource = airportRunway.FetchWithFilter( Guid.Empty , airportPicker.SelectedValue , textBoxDirection.Text , textBoxDimensions.Text , textBoxSurface.Text , textBoxInstrumentLandingSystemType.Text , Guid.Empty , DateTime.MinValue ); dataGridViewCrudeAirportRunway.AutoGenerateColumns = false; dataGridViewCrudeAirportRunway.DataSource = bindingSource; dataGridViewCrudeAirportRunway.AutoResizeColumns(); dataGridViewCrudeAirportRunway.Refresh(); } catch (Exception ex) { if (ex == null) { } else { System.Diagnostics.Debugger.Break(); } } finally { airportRunway.Close(); } }