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

            try {
                var bindingSource = new BindingSource();
                bindingSource.DataSource = ferryIdentifierTypeRef.FetchWithFilter(
                    textBoxFerryIdentifierType.Text
                    , textBoxFerryIdentifierTypeName.Text
                    , textBoxState.Text
                    , Guid.Empty
                    , DateTime.MinValue
                    );
                dataGridViewCrudeFerryIdentifierTypeRef.AutoGenerateColumns = false;
                dataGridViewCrudeFerryIdentifierTypeRef.DataSource          = bindingSource;
                dataGridViewCrudeFerryIdentifierTypeRef.AutoResizeColumns();
                dataGridViewCrudeFerryIdentifierTypeRef.Refresh();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                ferryIdentifierTypeRef.Close();
            }
        }
        // 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)
            {
                CrudeFerryIdentifierTypeRefServiceClient ferryIdentifierTypeRef = null;

                try {
                    ferryIdentifierTypeRef = new CrudeFerryIdentifierTypeRefServiceClient();
                    List <CrudeFerryIdentifierTypeRefContract> contracts = ferryIdentifierTypeRef.FetchAll();

                    cboRef.DataSource    = contracts;
                    cboRef.DisplayMember = "FerryIdentifierTypeName";
                    cboRef.ValueMember   = "FerryIdentifierTypeRcd";
                } catch (Exception ex) {
                    if (ex != null)
                    {
                    }
                } finally {
                    if (ferryIdentifierTypeRef != null)
                    {
                        ferryIdentifierTypeRef.Close();
                    }
                }
            }
        }
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(string ferryIdentifierTypeRcd, System.Guid userId)
        {
            var service = new CrudeFerryIdentifierTypeRefServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByFerryIdentifierTypeRcd(ferryIdentifierTypeRcd);
                textBoxFerryIdentifierType.Text     = _contract.FerryIdentifierTypeRcd;
                textBoxFerryIdentifierTypeName.Text = _contract.FerryIdentifierTypeName;
                textBoxState.Text           = _contract.StateRcd;
                _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 CrudeFerryIdentifierTypeRefServiceClient();

            try {
                _contract.FerryIdentifierTypeRcd  = textBoxFerryIdentifierType.Text;
                _contract.FerryIdentifierTypeName = textBoxFerryIdentifierTypeName.Text;
                _contract.StateRcd = textBoxState.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();
        }
示例#5
0
        public ActionResult CrudeFerryIdentifierTypeRefEdit(
            System.String ferryIdentifierTypeRcd
            )
        {
            CrudeFerryIdentifierTypeRefContract contract = new CrudeFerryIdentifierTypeRefServiceClient().FetchByFerryIdentifierTypeRcd(ferryIdentifierTypeRcd);

            return(View(
                       "~/Views/Crude/Ferry/CrudeFerryIdentifierTypeRef/CrudeFerryIdentifierTypeRefEdit.cshtml",
                       contract
                       ));
        }