// refresh the grid
        // links:
        //  docLink: http://sql2x.org/documentationLink/a90065e7-8ace-4de7-9367-d4653a7c637f
        public void RefreshCrudeAircraftDocumentTypeRef()
        {
            var aircraftDocumentTypeRef = new CrudeAircraftDocumentTypeRefServiceClient();

            try {
                var bindingSource = new BindingSource();
                bindingSource.DataSource = aircraftDocumentTypeRef.FetchWithFilter(
                    textBoxAircraftDocumentType.Text
                    , textBoxAircraftDocumentTypeName.Text
                    , Convert.ToBoolean(checkBoxActiveFlag.Checked)
                    , maskedTextBoxSortOrder.Text == String.Empty ? 0 : Convert.ToInt32(maskedTextBoxSortOrder.Text)
                    , Guid.Empty
                    , DateTime.MinValue
                    );
                dataGridViewCrudeAircraftDocumentTypeRef.AutoGenerateColumns = false;
                dataGridViewCrudeAircraftDocumentTypeRef.DataSource          = bindingSource;
                dataGridViewCrudeAircraftDocumentTypeRef.AutoResizeColumns();
                dataGridViewCrudeAircraftDocumentTypeRef.Refresh();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                aircraftDocumentTypeRef.Close();
            }
        }
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(string aircraftDocumentTypeRcd, System.Guid userId)
        {
            var service = new CrudeAircraftDocumentTypeRefServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByAircraftDocumentTypeRcd(aircraftDocumentTypeRcd);
                textBoxAircraftDocumentType.Text     = _contract.AircraftDocumentTypeRcd;
                textBoxAircraftDocumentTypeName.Text = _contract.AircraftDocumentTypeName;
                checkBoxActiveFlag.Checked           = _contract.ActiveFlag;
                maskedTextBoxSortOrder.Text          = _contract.SortOrder.ToString();
                _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();
            }
        }
        // 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 CrudeAircraftDocumentTypeRefServiceClient();

            try {
                _contract.AircraftDocumentTypeRcd  = textBoxAircraftDocumentType.Text;
                _contract.AircraftDocumentTypeName = textBoxAircraftDocumentTypeName.Text;
                _contract.ActiveFlag = Convert.ToBoolean(checkBoxActiveFlag.Checked);
                _contract.SortOrder  = maskedTextBoxSortOrder.Text == String.Empty ? 0 : Convert.ToInt32(maskedTextBoxSortOrder.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();
        }
Exemplo n.º 4
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)
            {
                CrudeAircraftDocumentTypeRefServiceClient aircraftDocumentTypeRef = null;

                try {
                    aircraftDocumentTypeRef = new CrudeAircraftDocumentTypeRefServiceClient();
                    List <CrudeAircraftDocumentTypeRefContract> contracts = aircraftDocumentTypeRef.FetchAll();

                    cboRef.DataSource    = contracts;
                    cboRef.DisplayMember = "AircraftDocumentTypeName";
                    cboRef.ValueMember   = "AircraftDocumentTypeRcd";
                } catch (Exception ex) {
                    if (ex != null)
                    {
                    }
                } finally {
                    if (aircraftDocumentTypeRef != null)
                    {
                        aircraftDocumentTypeRef.Close();
                    }
                }
            }
        }
Exemplo n.º 5
0
        public ActionResult CrudeAircraftDocumentTypeRefEdit(
            System.String aircraftDocumentTypeRcd
            )
        {
            CrudeAircraftDocumentTypeRefContract contract = new CrudeAircraftDocumentTypeRefServiceClient().FetchByAircraftDocumentTypeRcd(aircraftDocumentTypeRcd);

            return(View(
                       "~/Views/Crude/Aircraft/CrudeAircraftDocumentTypeRef/CrudeAircraftDocumentTypeRefEdit.cshtml",
                       contract
                       ));
        }