public LoggingBehavior(IStringBehavior stringBehavior) { this.stringBehavior = stringBehavior; this.logger = new DebugLogger(); }
public LoggingBehavior(IStringBehavior stringBehavior, ILogger debugLogger) { this.stringBehavior = stringBehavior; this.debugLogger = debugLogger; }
public AppendingBehavior(IStringBehavior stringBehavior) { this.stringBehavior = stringBehavior; }