private void LoadList()
        {
            try
            {
                var list = _CompanyRepo.GetListByContainsAll(txtKeyword.Value);

                HttpContext.Current.Session["listCompany"] = list;
                ASPxGridView1_Congty.DataSource            = list;
                ASPxGridView1_Congty.DataBind();
            }
            catch //(Exception)
            {
                //throw;
            }
        }