// 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 CrudeProductGatherAttributeServiceClient();

            try {
                _contract.ProductGatherAttributeValue   = textBoxProductGatherAttributeValue.Text;
                _contract.ProductGatherAttributeTypeRcd = productGatherAttributeTypeRefCombo.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();
        }
Пример #2
0
        // refresh the grid
        // links:
        //  docLink: http://sql2x.org/documentationLink/a90065e7-8ace-4de7-9367-d4653a7c637f
        public void RefreshCrudeProductGatherAttribute()
        {
            var productGatherAttribute = new CrudeProductGatherAttributeServiceClient();

            try {
                var bindingSource = new BindingSource();
                bindingSource.DataSource = productGatherAttribute.FetchWithFilter(
                    Guid.Empty
                    , textBoxProductGatherAttributeValue.Text
                    , productGatherAttributeTypeRefCombo.Text
                    , Guid.Empty
                    , Guid.Empty
                    , DateTime.MinValue
                    );
                dataGridViewCrudeProductGatherAttribute.AutoGenerateColumns = false;
                dataGridViewCrudeProductGatherAttribute.DataSource          = bindingSource;
                dataGridViewCrudeProductGatherAttribute.AutoResizeColumns();
                dataGridViewCrudeProductGatherAttribute.Refresh();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                productGatherAttribute.Close();
            }
        }
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(System.Guid productGatherAttributeId)
        {
            var service = new CrudeProductGatherAttributeServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByProductGatherAttributeId(productGatherAttributeId);
                textBoxProductGatherAttributeValue.Text = _contract.ProductGatherAttributeValue;
                productGatherAttributeTypeRefCombo.Text = _contract.ProductGatherAttributeTypeRcd != null ? _contract.ProductGatherAttributeTypeRcd : String.Empty;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                service.Close();
            }
        }
        public ActionResult CrudeProductGatherAttributeEdit(
            System.Guid productGatherAttributeId
            )
        {
            CrudeProductGatherAttributeContract contract = new CrudeProductGatherAttributeServiceClient().FetchByProductGatherAttributeId(productGatherAttributeId);

            ViewBag.ProductGatherAttributeTypeRcd =
                new SelectList(new CrudeProductGatherAttributeTypeRefServiceClient().FetchAll(),
                               "ProductGatherAttributeTypeRcd",
                               "ProductGatherAttributeTypeName",
                               contract.ProductGatherAttributeTypeRcd
                               );

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


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