BLL.CommentService.ReplyCommentByOrg C# (CSharp) Метод

ReplyCommentByOrg() публичный Метод

public ReplyCommentByOrg ( System.Guid ComID, Comment comment ) : bool
ComID System.Guid
comment Comment
Результат 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;
        }