Esempio n. 1
0
 public ExceptionDecorator(IModifyBehavior modifyBehavior)
 {
     this.modifyBehavior = modifyBehavior ?? throw new ArgumentNullException("IModifyBehavior is null");
 }
Esempio n. 2
0
 public LoggingModifyBehavior(IModifyBehavior behavior)
 {
     this.behavior = behavior;
 }
Esempio n. 3
0
 public TimerDecorator(IModifyBehavior modifyBehavior)
 {
     this.modifyBehavior = modifyBehavior ?? throw new ArgumentNullException("IModifyBehavior is null");
     this.stopwatch      = new Stopwatch();
 }