Exemplo n.º 1
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 CrudeProductEntityTypeRefServiceClient();

            try {
                _contract.ProductEntityTypeRcd  = textBoxProductEntityType.Text;
                _contract.ProductEntityTypeName = textBoxProductEntityTypeName.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.º 2
0
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(string productEntityTypeRcd, System.Guid userId)
        {
            var service = new CrudeProductEntityTypeRefServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByProductEntityTypeRcd(productEntityTypeRcd);
                textBoxProductEntityType.Text     = _contract.ProductEntityTypeRcd;
                textBoxProductEntityTypeName.Text = _contract.ProductEntityTypeName;
                _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();
            }
        }
Exemplo n.º 3
0
        // fetch all rows from the SOAP layer and populate the ComboBox with it
        public void PopulateCombo()
        {
            if (!DesignMode && cboRef.DataSource == null)
            {
                CrudeProductEntityTypeRefServiceClient productEntityTypeRef = null;

                try {
                    productEntityTypeRef = new CrudeProductEntityTypeRefServiceClient();
                    List <CrudeProductEntityTypeRefContract> contracts = productEntityTypeRef.FetchAll();

                    cboRef.DataSource    = contracts;
                    cboRef.DisplayMember = "ProductEntityTypeName";
                    cboRef.ValueMember   = "ProductEntityTypeRcd";
                } catch (Exception ex) {
                    if (ex != null)
                    {
                    }
                } finally {
                    if (productEntityTypeRef != null)
                    {
                        productEntityTypeRef.Close();
                    }
                }
            }
        }
        // refresh the grid
        // links:
        //  docLink: http://sql2x.org/documentationLink/a90065e7-8ace-4de7-9367-d4653a7c637f
        public void RefreshCrudeProductEntityTypeRef()
        {
            var productEntityTypeRef = new CrudeProductEntityTypeRefServiceClient();

            try {
                var bindingSource = new BindingSource();
                bindingSource.DataSource = productEntityTypeRef.FetchWithFilter(
                    textBoxProductEntityType.Text
                    , textBoxProductEntityTypeName.Text
                    , Guid.Empty
                    , DateTime.MinValue
                    );
                dataGridViewCrudeProductEntityTypeRef.AutoGenerateColumns = false;
                dataGridViewCrudeProductEntityTypeRef.DataSource          = bindingSource;
                dataGridViewCrudeProductEntityTypeRef.AutoResizeColumns();
                dataGridViewCrudeProductEntityTypeRef.Refresh();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                productEntityTypeRef.Close();
            }
        }
Exemplo n.º 5
0
        public ActionResult CrudeProductEntityTypeRefEdit(
            System.String productEntityTypeRcd
            )
        {
            CrudeProductEntityTypeRefContract contract = new CrudeProductEntityTypeRefServiceClient().FetchByProductEntityTypeRcd(productEntityTypeRcd);

            return(View(
                       "~/Views/Crude/Product/CrudeProductEntityTypeRef/CrudeProductEntityTypeRefEdit.cshtml",
                       contract
                       ));
        }