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

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

            _isNew = false;
            try {
                _contract = service.FetchByAircraftBodyRcd(aircraftBodyRcd);
                textBoxAircraftBody.Text     = _contract.AircraftBodyRcd;
                textBoxAircraftBodyName.Text = _contract.AircraftBodyName;
                textBoxDescription.Text      = _contract.Description;
                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 CrudeAircraftBodyRefServiceClient();

            try {
                _contract.AircraftBodyRcd  = textBoxAircraftBody.Text;
                _contract.AircraftBodyName = textBoxAircraftBodyName.Text;
                _contract.Description      = textBoxDescription.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();
        }
Example #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)
            {
                CrudeAircraftBodyRefServiceClient aircraftBodyRef = null;

                try {
                    aircraftBodyRef = new CrudeAircraftBodyRefServiceClient();
                    List <CrudeAircraftBodyRefContract> contracts = aircraftBodyRef.FetchAll();

                    cboRef.DataSource    = contracts;
                    cboRef.DisplayMember = "AircraftBodyName";
                    cboRef.ValueMember   = "AircraftBodyRcd";
                } catch (Exception ex) {
                    if (ex != null)
                    {
                    }
                } finally {
                    if (aircraftBodyRef != null)
                    {
                        aircraftBodyRef.Close();
                    }
                }
            }
        }
Example #5
0
        public ActionResult CrudeAircraftBodyRefEdit(
            System.String aircraftBodyRcd
            )
        {
            CrudeAircraftBodyRefContract contract = new CrudeAircraftBodyRefServiceClient().FetchByAircraftBodyRcd(aircraftBodyRcd);

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