public ActionResult ChangeListNoGroup(List <int> id, List <int> no)
        {
            if (!CheckIsLogin())
            {
                return(Redirect(res.Pageviews.PvMemberSignIn));
            }
            var svProductGroup = new ProductGroupService();

            try
            {
                svProductGroup.UpdateProductGroup(id, no);
            }
            catch (Exception ex)
            {
                CreateLogFiles(ex);
            }

            return(Json(new { IsResult = svProductGroup.IsResult, MsgError = GenerateMsgError(svProductGroup.MsgError), ID = id }));
        }