// 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 CrudeBookingDocumentServiceClient(); try { _contract.BookingDocumentTypeRcd = bookingDocumentTypeRefCombo.Text; _contract.BookingDocumentName = textBoxBookingDocumentName.Text; _contract.BookingDocumentFilename = textBoxBookingDocumentFilename.Text; _contract.BookingDocument = textBoxBookingDocument.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(); }
// refresh the grid // links: // docLink: http://sql2x.org/documentationLink/a90065e7-8ace-4de7-9367-d4653a7c637f public void RefreshCrudeBookingDocument() { var bookingDocument = new CrudeBookingDocumentServiceClient(); try { var bindingSource = new BindingSource(); bindingSource.DataSource = bookingDocument.FetchWithFilter( Guid.Empty , Guid.Empty , bookingDocumentTypeRefCombo.Text , textBoxBookingDocumentName.Text , textBoxBookingDocumentFilename.Text , textBoxBookingDocument.Text , textBoxComment.Text , Guid.Empty , DateTime.MinValue ); dataGridViewCrudeBookingDocument.AutoGenerateColumns = false; dataGridViewCrudeBookingDocument.DataSource = bindingSource; dataGridViewCrudeBookingDocument.AutoResizeColumns(); dataGridViewCrudeBookingDocument.Refresh(); } catch (Exception ex) { if (ex == null) { } else { System.Diagnostics.Debugger.Break(); } } finally { bookingDocument.Close(); } }
// shows the form in edit modus // links: // docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77 public void ShowAsEdit(System.Guid bookingDocumentId) { var service = new CrudeBookingDocumentServiceClient(); _isNew = false; try { _contract = service.FetchByBookingDocumentId(bookingDocumentId); bookingDocumentTypeRefCombo.Text = _contract.BookingDocumentTypeRcd != null ? _contract.BookingDocumentTypeRcd : String.Empty; textBoxBookingDocumentName.Text = _contract.BookingDocumentName; textBoxBookingDocumentFilename.Text = _contract.BookingDocumentFilename; textBoxBookingDocument.Text = _contract.BookingDocument; textBoxComment.Text = _contract.Comment; 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(); } }
public ActionResult CrudeBookingDocumentEdit( System.Guid bookingDocumentId ) { CrudeBookingDocumentContract contract = new CrudeBookingDocumentServiceClient().FetchByBookingDocumentId(bookingDocumentId); ViewBag.BookingDocumentTypeRcd = new SelectList(new CrudeBookingDocumentTypeRefServiceClient().FetchAll(), "BookingDocumentTypeRcd", "BookingDocumentTypeName", contract.BookingDocumentTypeRcd ); ViewBag.DefaultUserName = new CrudeDefaultUserServiceClient().FetchByDefaultUserId(contract.UserId).DefaultUserName; return(View( "~/Views/Crude/Booking/CrudeBookingDocument/CrudeBookingDocumentEdit.cshtml", contract )); }