// refresh the grid
        // links:
        //  docLink: http://sql2x.org/documentationLink/a90065e7-8ace-4de7-9367-d4653a7c637f
        public void RefreshCrudeProductCategoryImage()
        {
            var productCategoryImage = new CrudeProductCategoryImageServiceClient();

            try {
                var bindingSource = new BindingSource();
                bindingSource.DataSource = productCategoryImage.FetchWithFilter(
                    Guid.Empty
                    , Guid.Empty
                    , productCategoryImageTypeRefCombo.Text
                    , null
                    , Guid.Empty
                    , DateTime.MinValue
                    );
                dataGridViewCrudeProductCategoryImage.AutoGenerateColumns = false;
                dataGridViewCrudeProductCategoryImage.DataSource          = bindingSource;
                dataGridViewCrudeProductCategoryImage.AutoResizeColumns();
                dataGridViewCrudeProductCategoryImage.Refresh();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                productCategoryImage.Close();
            }
        }
        // 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 CrudeProductCategoryImageServiceClient();

            try {
                _contract.ProductCategoryImageTypeRcd = productCategoryImageTypeRefCombo.Text;
                _contract.Image = ImageToByte(pictureBoxImage.Image);

                if (_isNew)
                {
                    service.Insert(_contract);
                }
                else
                {
                    service.Update(_contract);
                }
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                service.Close();
            }

            Close();
        }
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(System.Guid productCategoryImageId)
        {
            var service = new CrudeProductCategoryImageServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByProductCategoryImageId(productCategoryImageId);
                productCategoryImageTypeRefCombo.Text = _contract.ProductCategoryImageTypeRcd != null ? _contract.ProductCategoryImageTypeRcd : String.Empty;
                if (_contract.Image != null)
                {
                    pictureBoxImage.Image = ByteToImage(_contract.Image);
                }
                _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 CrudeProductCategoryImageEdit(
            System.Guid productCategoryImageId
            )
        {
            CrudeProductCategoryImageContract contract = new CrudeProductCategoryImageServiceClient().FetchByProductCategoryImageId(productCategoryImageId);

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

            ViewBag.ProductCategoryImageTypeRcd =
                new SelectList(new CrudeProductCategoryImageTypeRefServiceClient().FetchAll(),
                               "ProductCategoryImageTypeRcd",
                               "ProductCategoryImageTypeName",
                               contract.ProductCategoryImageTypeRcd
                               );

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


            return(View(
                       "~/Views/Crude/Product/CrudeProductCategoryImage/CrudeProductCategoryImageEdit.cshtml",
                       contract
                       ));
        }
Beispiel #5
0
        private void PopulateProductCategoryImage(List <CrudeProductCategoryImageContract> ImageContract)
        {
            var service = new CrudeProductCategoryImageServiceClient();

            try {
                var contract = service.FetchByProductCategoryImageId(ImageContract [0].ProductCategoryImageId);
                pictureBoxImage.Image = ByteToImage(contract.Image);
            } catch (Exception ex) {
                Error(ex);
                pictureBoxImage.Image = null;
            } finally {
                service.Close();
            }
        }