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