StoryTeller.Persistence.WriterVisitor.WriteComment C# (CSharp) 메소드

WriteComment() 공개 메소드

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