public Boolean ChangeStatusCmt(int id)
        {
            if (CheckStatusUser())
            {
                return(false);
            }

            if (CheckAdmin())
            {
                CommentDAO commentDao = new CommentDAO();

                var b = commentDao.ChangeStatus(id);

                return(b);
            }

            return(false);
        }