// shows the form in edit modus // links: // docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77 public void ShowAsEdit(System.Guid productId) { var service = new CrudeProductServiceClient(); _isNew = false; try { _contract = service.FetchByProductId(productId); textBoxProductName.Text = _contract.ProductName; textBoxState.Text = _contract.StateRcd; 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(); } }
// bring up edit form for ProductMaintenance // links: // docLink: http://sql2x.org/documentationLink/d7ff032d-3bcf-438f-9850-900ca0ebca98 public void ShowAsEdit(System.Guid productId) { var service = new CrudeProductServiceClient(); _isNew = false; try { _contract = service.FetchByProductId(productId); textBoxProductName.Text = _contract.ProductName; textBoxState.Text = _contract.StateRcd; _contract.DateTime = DateTime.UtcNow; dateTimePickerDateTime.Text = _contract.DateTime.ToString(); RefreshProductMaintenance(); Show(); } catch (Exception ex) { MessageBox.Show(ex.Message); } finally { service.Close(); } }