コード例 #1
0
        // 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)
            {
                CrudeBookingDocumentTypeRefServiceClient bookingDocumentTypeRef = null;

                try {
                    bookingDocumentTypeRef = new CrudeBookingDocumentTypeRefServiceClient();
                    List <CrudeBookingDocumentTypeRefContract> contracts = bookingDocumentTypeRef.FetchAll();

                    cboRef.DataSource    = contracts;
                    cboRef.DisplayMember = "BookingDocumentTypeName";
                    cboRef.ValueMember   = "BookingDocumentTypeRcd";
                } catch (Exception ex) {
                    if (ex != null)
                    {
                    }
                } finally {
                    if (bookingDocumentTypeRef != null)
                    {
                        bookingDocumentTypeRef.Close();
                    }
                }
            }
        }
コード例 #2
0
        // 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 CrudeBookingDocumentTypeRefServiceClient();

            try {
                _contract.BookingDocumentTypeRcd  = textBoxBookingDocumentType.Text;
                _contract.BookingDocumentTypeName = textBoxBookingDocumentTypeName.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();
        }
コード例 #3
0
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(string bookingDocumentTypeRcd, System.Guid userId)
        {
            var service = new CrudeBookingDocumentTypeRefServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByBookingDocumentTypeRcd(bookingDocumentTypeRcd);
                textBoxBookingDocumentType.Text     = _contract.BookingDocumentTypeRcd;
                textBoxBookingDocumentTypeName.Text = _contract.BookingDocumentTypeName;
                _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();
            }
        }
コード例 #4
0
        // refresh the grid
        // links:
        //  docLink: http://sql2x.org/documentationLink/a90065e7-8ace-4de7-9367-d4653a7c637f
        public void RefreshCrudeBookingDocumentTypeRef()
        {
            var bookingDocumentTypeRef = new CrudeBookingDocumentTypeRefServiceClient();

            try {
                var bindingSource = new BindingSource();
                bindingSource.DataSource = bookingDocumentTypeRef.FetchWithFilter(
                    textBoxBookingDocumentType.Text
                    , textBoxBookingDocumentTypeName.Text
                    , Guid.Empty
                    , DateTime.MinValue
                    );
                dataGridViewCrudeBookingDocumentTypeRef.AutoGenerateColumns = false;
                dataGridViewCrudeBookingDocumentTypeRef.DataSource          = bindingSource;
                dataGridViewCrudeBookingDocumentTypeRef.AutoResizeColumns();
                dataGridViewCrudeBookingDocumentTypeRef.Refresh();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                bookingDocumentTypeRef.Close();
            }
        }
コード例 #5
0
        public ActionResult CrudeBookingDocumentTypeRefEdit(
            System.String bookingDocumentTypeRcd
            )
        {
            CrudeBookingDocumentTypeRefContract contract = new CrudeBookingDocumentTypeRefServiceClient().FetchByBookingDocumentTypeRcd(bookingDocumentTypeRcd);

            return(View(
                       "~/Views/Crude/Booking/CrudeBookingDocumentTypeRef/CrudeBookingDocumentTypeRefEdit.cshtml",
                       contract
                       ));
        }