private void BaseButton_Search_Click(object sender, EventArgs e)
        {
            try
            {
                if (GlobalUtil.EngineUnconnectioned(this))
                {
                    return;
                }
                string curShopId = ValidateUtil.CheckEmptyValue(this.skinComboBoxShopID.SelectedValue);

                this.pagePara = new GetCostumePricesPara()
                {
                    BrandID = (this.skinComboBox_Brand.SelectedValue != null && int.Parse(this.skinComboBox_Brand.SelectedValue.ToString()) != -1) ? int.Parse(this.skinComboBox_Brand.SelectedValue.ToString()) : -1,
                    ClassID = skinComboBoxBigClass.SelectedValue.ClassID,
                    // SubSmallClass = skinComboBoxBigClass.SelectedValue?.SubSmallClass,
                    CostumeID = costumeFromSupplierTextBox1.Text,
                    ShopId    = curShopId,
                };

                List <CostumePrice> listPage = GlobalCache.ServerProxy.GetShopCostumePrices(this.pagePara);
                this.BindingReturnOrderSource(listPage);
            }
            catch (Exception ee)
            {
                GlobalUtil.ShowError(ee);
            }
            finally
            {
                GlobalUtil.UnLockPage(this);
            }
        }
        private void Initialize()
        {
            this.dataGridView1.AutoGenerateColumns = false;

            this.pagePara = new GetCostumePricesPara();
        }