StoryTeller.Persistence.WriterVisitor.WriteComment C# (CSharp) Method

WriteComment() public method

public WriteComment ( Comment comment ) : void
comment StoryTeller.Domain.Comment
return void
        public void WriteComment(Comment comment)
        {
            _nodes.Peek().AddChild(Comment.COMMENT).WithFormattedText(comment.Text);
        }