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 CrudeProductServiceClient();

            try {
                _contract.ProductName = textBoxProductName.Text;
                _contract.StateRcd    = textBoxState.Text;
                _contract.UserId      = (Guid)userPicker.SelectedValue;

                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(System.Guid productId)
        {
            var service = new CrudeProductServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByProductId(productId);
                textBoxProductName.Text     = _contract.ProductName;
                textBoxState.Text           = _contract.StateRcd;
                userPicker.SelectedValue    = _contract.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
        // refresh the grid
        // links:
        //  docLink: http://sql2x.org/documentationLink/a90065e7-8ace-4de7-9367-d4653a7c637f
        public void RefreshCrudeProduct()
        {
            var product = new CrudeProductServiceClient();

            try {
                var bindingSource = new BindingSource();
                bindingSource.DataSource = product.FetchWithFilter(
                    Guid.Empty
                    , Guid.Empty
                    , textBoxProductName.Text
                    , textBoxState.Text
                    , Guid.Empty
                    , DateTime.MinValue
                    );
                dataGridViewCrudeProduct.AutoGenerateColumns = false;
                dataGridViewCrudeProduct.DataSource          = bindingSource;
                dataGridViewCrudeProduct.AutoResizeColumns();
                dataGridViewCrudeProduct.Refresh();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                product.Close();
            }
        }
Exemplo n.º 4
0
        public ActionResult CrudeProductEdit(
            System.Guid productId
            )
        {
            CrudeProductContract contract = new CrudeProductServiceClient().FetchByProductId(productId);

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


            return(View(
                       "~/Views/Crude/Product/CrudeProduct/CrudeProductEdit.cshtml",
                       contract
                       ));
        }
Exemplo n.º 5
0
        // bring up edit form for ProductMaintenance
        // links:
        //  docLink: http://sql2x.org/documentationLink/d7ff032d-3bcf-438f-9850-900ca0ebca98
        public void ShowAsEdit(System.Guid productId)
        {
            var service = new CrudeProductServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByProductId(productId);
                textBoxProductName.Text     = _contract.ProductName;
                textBoxState.Text           = _contract.StateRcd;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();

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

            try {
                _contract.ProductName = textBoxProductName.Text;
                _contract.StateRcd    = textBoxState.Text;

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

            Close();
        }