public ActionResult CrudeProductCategoryDocumentationEdit(
            System.Guid productCategoryDocumentationId
            )
        {
            CrudeProductCategoryDocumentationContract contract = new CrudeProductCategoryDocumentationServiceClient().FetchByProductCategoryDocumentationId(productCategoryDocumentationId);

            ViewBag.ProductCategoryDocumentationTypeRcd =
                new SelectList(new CrudeProductCategoryDocumentationTypeRefServiceClient().FetchAll(),
                               "ProductCategoryDocumentationTypeRcd",
                               "ProductCategoryDocumentationTypeName",
                               contract.ProductCategoryDocumentationTypeRcd
                               );

            ViewBag.ProductCategoryId =
                new SelectList(new CrudeProductCategoryServiceClient().FetchAll(),
                               "ProductCategoryId",
                               "ProductCategoryName",
                               contract.ProductCategoryId
                               );

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


            return(View(
                       "~/Views/Crude/Product/CrudeProductCategoryDocumentation/CrudeProductCategoryDocumentationEdit.cshtml",
                       contract
                       ));
        }
Beispiel #2
0
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(System.Guid productCategoryDocumentationId)
        {
            var service = new CrudeProductCategoryDocumentationServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByProductCategoryDocumentationId(productCategoryDocumentationId);
                productCategoryDocumentationTypeRefCombo.Text = _contract.ProductCategoryDocumentationTypeRcd != null ? _contract.ProductCategoryDocumentationTypeRcd : String.Empty;
                textBoxDocumentation.Text   = _contract.Documentation;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                service.Close();
            }
        }
Beispiel #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 CrudeProductCategoryDocumentationServiceClient();

            try {
                _contract.ProductCategoryDocumentationTypeRcd = productCategoryDocumentationTypeRefCombo.Text;
                _contract.Documentation = textBoxDocumentation.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 RefreshCrudeProductCategoryDocumentation()
        {
            var productCategoryDocumentation = new CrudeProductCategoryDocumentationServiceClient();

            try {
                var bindingSource = new BindingSource();
                bindingSource.DataSource = productCategoryDocumentation.FetchWithFilter(
                    Guid.Empty
                    , productCategoryDocumentationTypeRefCombo.Text
                    , Guid.Empty
                    , textBoxDocumentation.Text
                    , Guid.Empty
                    , DateTime.MinValue
                    );
                dataGridViewCrudeProductCategoryDocumentation.AutoGenerateColumns = false;
                dataGridViewCrudeProductCategoryDocumentation.DataSource          = bindingSource;
                dataGridViewCrudeProductCategoryDocumentation.AutoResizeColumns();
                dataGridViewCrudeProductCategoryDocumentation.Refresh();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                productCategoryDocumentation.Close();
            }
        }