public void FetchBankDetails( System.Guid financialPaymentBankId ) { var service = new CrudeFinancialPaymentBankServiceClient(); try { CrudeFinancialPaymentBankContract contract = service.FetchByFinancialPaymentBankId(financialPaymentBankId); _financialCurrencyId = contract.FinancialCurrencyId; maskedTextBoxPaymentAmount.Text = contract.Amount.ToString(); financialCurrencyPickerPayment.SelectedValue = contract.FinancialCurrencyId; financialBankAccountNumberTypeRefCombo.Text = contract.FinancialBankAccountNumberTypeRcd != null ? contract.FinancialBankAccountNumberTypeRcd : String.Empty; textBoxBankName.Text = contract.BankName; textBoxBankAccount.Text = contract.BankAccount; textBoxBankNumber.Text = contract.BankNumber; Show(); } catch (Exception ex) { MessageBox.Show(ex.Message); } 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 CrudeFinancialPaymentBankServiceClient(); try { _contract.FinancialBankAccountNumberTypeRcd = financialBankAccountNumberTypeRefCombo.Text; _contract.BankName = textBoxBankName.Text; _contract.BankAccount = textBoxBankAccount.Text; _contract.BankNumber = textBoxBankNumber.Text; _contract.Amount = maskedTextBoxAmount.Text == String.Empty ? 0 : Convert.ToDecimal(maskedTextBoxAmount.Text); _contract.FinancialCurrencyId = (Guid)financialCurrencyPicker.SelectedValue; _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 RefreshCrudeFinancialPaymentBank() { var financialPaymentBank = new CrudeFinancialPaymentBankServiceClient(); try { var bindingSource = new BindingSource(); bindingSource.DataSource = financialPaymentBank.FetchWithFilter( Guid.Empty , financialBankAccountNumberTypeRefCombo.Text , textBoxBankName.Text , textBoxBankAccount.Text , textBoxBankNumber.Text , maskedTextBoxAmount.Text == String.Empty ? 0 : Convert.ToDecimal(maskedTextBoxAmount.Text) , financialCurrencyPicker.SelectedValue , Guid.Empty , DateTime.MinValue ); dataGridViewCrudeFinancialPaymentBank.AutoGenerateColumns = false; dataGridViewCrudeFinancialPaymentBank.DataSource = bindingSource; dataGridViewCrudeFinancialPaymentBank.AutoResizeColumns(); dataGridViewCrudeFinancialPaymentBank.Refresh(); } catch (Exception ex) { if (ex == null) { } else { System.Diagnostics.Debugger.Break(); } } finally { financialPaymentBank.Close(); } }
// shows the form in edit modus // links: // docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77 public void ShowAsEdit(System.Guid financialPaymentBankId) { var service = new CrudeFinancialPaymentBankServiceClient(); _isNew = false; try { _contract = service.FetchByFinancialPaymentBankId(financialPaymentBankId); financialBankAccountNumberTypeRefCombo.Text = _contract.FinancialBankAccountNumberTypeRcd != null ? _contract.FinancialBankAccountNumberTypeRcd : String.Empty; textBoxBankName.Text = _contract.BankName; textBoxBankAccount.Text = _contract.BankAccount; textBoxBankNumber.Text = _contract.BankNumber; maskedTextBoxAmount.Text = _contract.Amount.ToString(); financialCurrencyPicker.SelectedValue = _contract.FinancialCurrencyId; 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(); } }