// 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 CrudeAddressTypeRefServiceClient(); try { _contract.AddressTypeRcd = textBoxAddressType.Text; _contract.AddressTypeName = textBoxAddressTypeName.Text; if (_isNew) { service.Insert(_contract); } else { service.Update(_contract); } } catch (Exception ex) { if (ex == null) { } else { System.Diagnostics.Debugger.Break(); } } finally { service.Close(); } Close(); }
// shows the form in edit modus // links: // docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77 public void ShowAsEdit(string addressTypeRcd, System.Guid userId) { var service = new CrudeAddressTypeRefServiceClient(); _isNew = false; try { _contract = service.FetchByAddressTypeRcd(addressTypeRcd); textBoxAddressType.Text = _contract.AddressTypeRcd; textBoxAddressTypeName.Text = _contract.AddressTypeName; _contract.UserId = 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(); } }
// fetch all rows from the SOAP layer and populate the ComboBox with it // links: // docLink: http://sql2x.org/documentationLink/4ccfdfd8-9986-4cfe-8743-e0bcde887284 public void PopulateCombo() { if (!DesignMode && cboRef.DataSource == null) { CrudeAddressTypeRefServiceClient addressTypeRef = null; try { addressTypeRef = new CrudeAddressTypeRefServiceClient(); List <CrudeAddressTypeRefContract> contracts = addressTypeRef.FetchAll(); cboRef.DataSource = contracts; cboRef.DisplayMember = "AddressTypeName"; cboRef.ValueMember = "AddressTypeRcd"; } catch (Exception ex) { if (ex != null) { } } finally { if (addressTypeRef != null) { addressTypeRef.Close(); } } } }
// refresh the grid // links: // docLink: http://sql2x.org/documentationLink/a90065e7-8ace-4de7-9367-d4653a7c637f public void RefreshCrudeAddressTypeRef() { var addressTypeRef = new CrudeAddressTypeRefServiceClient(); try { var bindingSource = new BindingSource(); bindingSource.DataSource = addressTypeRef.FetchWithFilter( textBoxAddressType.Text , textBoxAddressTypeName.Text , Guid.Empty , DateTime.MinValue ); dataGridViewCrudeAddressTypeRef.AutoGenerateColumns = false; dataGridViewCrudeAddressTypeRef.DataSource = bindingSource; dataGridViewCrudeAddressTypeRef.AutoResizeColumns(); dataGridViewCrudeAddressTypeRef.Refresh(); } catch (Exception ex) { if (ex == null) { } else { System.Diagnostics.Debugger.Break(); } } finally { addressTypeRef.Close(); } }
public ActionResult CrudeAddressTypeRefEdit( System.String addressTypeRcd ) { CrudeAddressTypeRefContract contract = new CrudeAddressTypeRefServiceClient().FetchByAddressTypeRcd(addressTypeRcd); return(View( "~/Views/Crude/Address/CrudeAddressTypeRef/CrudeAddressTypeRefEdit.cshtml", contract )); }