public ActionResult Infomation()
        {
            var user = Utility.Getcookie("c_user");

            if (string.IsNullOrEmpty(user))
            {
                return(PartialView());
            }
            var txtId = FDIUtils.Decrypt(user, "@123");
            var model = _cusBl.GetByid(int.Parse(txtId));

            return(PartialView(model));
        }