Example #1
0
        public static string ApproveComments(string id)
        {
            if (id != "")
            {
                int       commentid = Convert.ToInt32(id);
                BlogModel objBlog   = new BlogModel();
                objBlog.CommentApproved(commentid);
            }

            return("Comment Approve Succesfully");
        }