StoryTeller.Persistence.WriterVisitor.WriteComment C# (CSharp) Méthode

WriteComment() public méthode

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