public JsonResult AddReply(string replyContent, int idComment)
        {
            var currentSiteOwner = (CurrentSiteOwner)Session[CommonBox.SessionBox.SITEOWNER_SESSION];
            var accountID        = currentSiteOwner.GetAccountID();

            dao.AddReply(replyContent, accountID, idComment);
            return(Json(new
            {
                status = true
            }));
        }