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

            try {
                _contract.ProductImageTypeRcd = productImageTypeRefCombo.Text;
                _contract.ImageFileName       = textBoxImageFileName.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();
        }
Пример #2
0
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(System.Guid productImageId)
        {
            var service = new CrudeProductImageServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByProductImageId(productImageId);
                productImageTypeRefCombo.Text = _contract.ProductImageTypeRcd != null ? _contract.ProductImageTypeRcd : String.Empty;
                textBoxImageFileName.Text     = _contract.ImageFileName;
                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();
            }
        }
Пример #3
0
        // save and close ProductImage
        // links:
        //  docLink: http://sql2x.org/documentationLink/d71519ff-fa27-4f64-9194-56886e4070ba
        private void buttonSave_Click(object sender, EventArgs e)
        {
            var service = new CrudeProductImageServiceClient();

            try {
                _contract.ProductImageTypeRcd = productImageTypeRefCombo.Text;
                _contract.ImageFileName       = textBoxImageFileName.Text;
                _contract.Image = ImageToByte(pictureBoxImage.Image);

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

            Close();
        }
Пример #4
0
        // refresh the grid
        // links:
        //  docLink: http://sql2x.org/documentationLink/a90065e7-8ace-4de7-9367-d4653a7c637f
        public void RefreshCrudeProductImage()
        {
            var productImage = new CrudeProductImageServiceClient();

            try {
                var bindingSource = new BindingSource();
                bindingSource.DataSource = productImage.FetchWithFilter(
                    Guid.Empty
                    , Guid.Empty
                    , productImageTypeRefCombo.Text
                    , textBoxImageFileName.Text
                    , null
                    , Guid.Empty
                    , DateTime.MinValue
                    );
                dataGridViewCrudeProductImage.AutoGenerateColumns = false;
                dataGridViewCrudeProductImage.DataSource          = bindingSource;
                dataGridViewCrudeProductImage.AutoResizeColumns();
                dataGridViewCrudeProductImage.Refresh();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                productImage.Close();
            }
        }
Пример #5
0
        public ActionResult CrudeProductImageEdit(
            System.Guid productImageId
            )
        {
            CrudeProductImageContract contract = new CrudeProductImageServiceClient().FetchByProductImageId(productImageId);

            ViewBag.ProductId =
                new SelectList(new CrudeProductServiceClient().FetchAll(),
                               "ProductId",
                               "ProductName",
                               contract.ProductId
                               );

            ViewBag.ProductImageTypeRcd =
                new SelectList(new CrudeProductImageTypeRefServiceClient().FetchAll(),
                               "ProductImageTypeRcd",
                               "ProductImageTypeName",
                               contract.ProductImageTypeRcd
                               );

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


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