NClass.Core.Models.ClassModel.AddCommentRelationship C# (CSharp) Method

AddCommentRelationship() public method

/// or is null. ///
public AddCommentRelationship ( Comment comment, IEntity entity ) : CommentRelationship
comment Comment
entity IEntity
return CommentRelationship
        public CommentRelationship AddCommentRelationship(Comment comment, IEntity entity)
        {
            CommentRelationship commentRelationship = new CommentRelationship(comment, entity);

            AddRelationship(commentRelationship);
            return commentRelationship;
        }