// fetch all rows from the SOAP layer and populate the ComboBox with it
        public void PopulateCombo()
        {
            if (!DesignMode && cboRef.DataSource == null)
            {
                CrudeProductCategoryImageTypeRefServiceClient productCategoryImageTypeRef = null;

                try {
                    productCategoryImageTypeRef = new CrudeProductCategoryImageTypeRefServiceClient();
                    List <CrudeProductCategoryImageTypeRefContract> contracts = productCategoryImageTypeRef.FetchAll();

                    cboRef.DataSource    = contracts;
                    cboRef.DisplayMember = "ProductCategoryImageTypeName";
                    cboRef.ValueMember   = "ProductCategoryImageTypeRcd";
                } catch (Exception ex) {
                    if (ex != null)
                    {
                    }
                } finally {
                    if (productCategoryImageTypeRef != null)
                    {
                        productCategoryImageTypeRef.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 CrudeProductCategoryImageTypeRefServiceClient();

            try {
                _contract.ProductCategoryImageTypeRcd  = textBoxProductCategoryImageType.Text;
                _contract.ProductCategoryImageTypeName = textBoxProductCategoryImageTypeName.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
        // refresh the grid
        // links:
        //  docLink: http://sql2x.org/documentationLink/a90065e7-8ace-4de7-9367-d4653a7c637f
        public void RefreshCrudeProductCategoryImageTypeRef()
        {
            var productCategoryImageTypeRef = new CrudeProductCategoryImageTypeRefServiceClient();

            try {
                var bindingSource = new BindingSource();
                bindingSource.DataSource = productCategoryImageTypeRef.FetchWithFilter(
                    textBoxProductCategoryImageType.Text
                    , textBoxProductCategoryImageTypeName.Text
                    , Guid.Empty
                    , DateTime.MinValue
                    );
                dataGridViewCrudeProductCategoryImageTypeRef.AutoGenerateColumns = false;
                dataGridViewCrudeProductCategoryImageTypeRef.DataSource          = bindingSource;
                dataGridViewCrudeProductCategoryImageTypeRef.AutoResizeColumns();
                dataGridViewCrudeProductCategoryImageTypeRef.Refresh();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                productCategoryImageTypeRef.Close();
            }
        }
Пример #4
0
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(string productCategoryImageTypeRcd, System.Guid userId)
        {
            var service = new CrudeProductCategoryImageTypeRefServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByProductCategoryImageTypeRcd(productCategoryImageTypeRcd);
                textBoxProductCategoryImageType.Text     = _contract.ProductCategoryImageTypeRcd;
                textBoxProductCategoryImageTypeName.Text = _contract.ProductCategoryImageTypeName;
                _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();
            }
        }
Пример #5
0
        public ActionResult CrudeProductCategoryImageTypeRefEdit(
            System.String productCategoryImageTypeRcd
            )
        {
            CrudeProductCategoryImageTypeRefContract contract = new CrudeProductCategoryImageTypeRefServiceClient().FetchByProductCategoryImageTypeRcd(productCategoryImageTypeRcd);

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