public async Task <ActionResult> GetAllVipCompany()
        {
            using (var client = new UserAccountClient())
            {
                var serviceReult = await client.SelectCompanyInfoByIdAsync(-1);

                serviceReult.ThrowIfException(true);
                return(Json(serviceReult.Result, JsonRequestBehavior.AllowGet));
            }
        }