BLL.CommentService.ReplyCommentByOrg C# (CSharp) Method

ReplyCommentByOrg() public method

public ReplyCommentByOrg ( System.Guid ComID, Comment comment ) : bool
ComID System.Guid
comment Comment
return bool
        public bool ReplyCommentByOrg(Guid ComID, Comment comment)
        {
            comment.State = 1;
            comment.Type = 3;
            if (commentHandler.AddComment(comment))
                return commentHandler.AddNextComID(ComID, comment.ComID);
            return false;
        }