Exemplo n.º 1
0
        // refresh the grid
        // links:
        //  docLink: http://sql2x.org/documentationLink/a90065e7-8ace-4de7-9367-d4653a7c637f
        public void RefreshCrudeProductInfo()
        {
            var productInfo = new CrudeProductInfoServiceClient();

            try {
                var bindingSource = new BindingSource();
                bindingSource.DataSource = productInfo.FetchWithFilter(
                    Guid.Empty
                    , Guid.Empty
                    , productInfoRefCombo.Text
                    , textBoxProductInfoValue.Text
                    , Guid.Empty
                    , DateTime.MinValue
                    );
                dataGridViewCrudeProductInfo.AutoGenerateColumns = false;
                dataGridViewCrudeProductInfo.DataSource          = bindingSource;
                dataGridViewCrudeProductInfo.AutoResizeColumns();
                dataGridViewCrudeProductInfo.Refresh();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                productInfo.Close();
            }
        }
        public ActionResult CrudeProductInfoEdit(
            System.Guid productInfoId
            )
        {
            CrudeProductInfoContract contract = new CrudeProductInfoServiceClient().FetchByProductInfoId(productInfoId);

            ViewBag.ProductId =
                new SelectList(new CrudeProductServiceClient().FetchAll(),
                               "ProductId",
                               "ProductName",
                               contract.ProductId
                               );

            ViewBag.ProductInfoRcd =
                new SelectList(new CrudeProductInfoRefServiceClient().FetchAll(),
                               "ProductInfoRcd",
                               "ProductInfoName",
                               contract.ProductInfoRcd
                               );

            ViewBag.DefaultUserName =
                new CrudeDefaultUserServiceClient().FetchByDefaultUserId(contract.UserId).DefaultUserName;


            return(View(
                       "~/Views/Crude/Product/CrudeProductInfo/CrudeProductInfoEdit.cshtml",
                       contract
                       ));
        }
Exemplo n.º 3
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 CrudeProductInfoServiceClient();

            try {
                _contract.ProductInfoRcd   = productInfoRefCombo.Text;
                _contract.ProductInfoValue = textBoxProductInfoValue.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
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(System.Guid productInfoId)
        {
            var service = new CrudeProductInfoServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByProductInfoId(productInfoId);
                productInfoRefCombo.Text     = _contract.ProductInfoRcd != null ? _contract.ProductInfoRcd : String.Empty;
                textBoxProductInfoValue.Text = _contract.ProductInfoValue;
                _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.º 5
0
        // bring up edit form for ProductInfo
        // links:
        //  docLink: http://sql2x.org/documentationLink/d7ff032d-3bcf-438f-9850-900ca0ebca98
        public void ShowAsEdit(System.Guid productInfoId)
        {
            var service = new CrudeProductInfoServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByProductInfoId(productInfoId);
                productInfoRefCombo.Text     = _contract.ProductInfoRcd != null ? _contract.ProductInfoRcd : String.Empty;
                textBoxProductInfoValue.Text = _contract.ProductInfoValue;
                _contract.DateTime           = DateTime.UtcNow;
                dateTimePickerDateTime.Text  = _contract.DateTime.ToString();

                RefreshProductInfo();
                Show();
            } catch (Exception ex) {
                MessageBox.Show(ex.Message);
            } finally {
                service.Close();
            }
        }
Exemplo n.º 6
0
        // save and close ProductInfo
        // links:
        //  docLink: http://sql2x.org/documentationLink/d71519ff-fa27-4f64-9194-56886e4070ba
        private void buttonSave_Click(object sender, EventArgs e)
        {
            var service = new CrudeProductInfoServiceClient();

            try {
                _contract.ProductInfoRcd   = productInfoRefCombo.Text;
                _contract.ProductInfoValue = textBoxProductInfoValue.Text;

                if (_isNew)
                {
                    service.Insert(_contract);
                }
                else
                {
                    service.Update(_contract);
                }
            } catch (Exception ex) {
                MessageBox.Show(ex.Message);
            } finally {
                service.Close();
            }

            Close();
        }