Пример #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 CrudeProductCategoryServiceClient();

            try {
                _contract.ProductCategoryCode     = textBoxProductCategoryCode.Text;
                _contract.ProductCategoryName     = textBoxProductCategoryName.Text;
                _contract.ProductCategoryPosition = maskedTextBoxProductCategoryPosition.Text == String.Empty ? 0 : Convert.ToInt32(maskedTextBoxProductCategoryPosition.Text);
                _contract.StateRcd = textBoxState.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();
        }
        // refresh the grid
        // links:
        //  docLink: http://sql2x.org/documentationLink/a90065e7-8ace-4de7-9367-d4653a7c637f
        public void RefreshCrudeProductCategory()
        {
            var productCategory = new CrudeProductCategoryServiceClient();

            try {
                var bindingSource = new BindingSource();
                bindingSource.DataSource = productCategory.FetchWithFilter(
                    Guid.Empty
                    , Guid.Empty
                    , Guid.Empty
                    , textBoxProductCategoryCode.Text
                    , textBoxProductCategoryName.Text
                    , maskedTextBoxProductCategoryPosition.Text == String.Empty ? 0 : Convert.ToInt32(maskedTextBoxProductCategoryPosition.Text)
                    , textBoxState.Text
                    , Guid.Empty
                    , DateTime.MinValue
                    );
                dataGridViewCrudeProductCategory.AutoGenerateColumns = false;
                dataGridViewCrudeProductCategory.DataSource          = bindingSource;
                dataGridViewCrudeProductCategory.AutoResizeColumns();
                dataGridViewCrudeProductCategory.Refresh();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                productCategory.Close();
            }
        }
Пример #3
0
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(System.Guid productCategoryId)
        {
            var service = new CrudeProductCategoryServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByProductCategoryId(productCategoryId);
                textBoxProductCategoryCode.Text           = _contract.ProductCategoryCode;
                textBoxProductCategoryName.Text           = _contract.ProductCategoryName;
                maskedTextBoxProductCategoryPosition.Text = _contract.ProductCategoryPosition.ToString();
                textBoxState.Text           = _contract.StateRcd;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                service.Close();
            }
        }
Пример #4
0
        // new template as of 2016.07.28 ( templateChapterIndex )
        public ActionResult TemplateChapterIndex()
        {
            Logging.ActionLog(Request, "TemplateChapterIndex", ViewBag);

            // fetch products
            var productCategory          = new CrudeProductCategoryServiceClient();
            var productCategoryContracts = productCategory.FetchAll();

            return(View(
                       productCategoryContracts
                       ));
        }
Пример #5
0
        public ActionResult CrudeProductCategoryEdit(
            System.Guid productCategoryId
            )
        {
            CrudeProductCategoryContract contract = new CrudeProductCategoryServiceClient().FetchByProductCategoryId(productCategoryId);

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


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