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