예제 #1
0
 public ConsumerScopeFactoryStub(ConsumerScope result)
 {
     _result = result;
 }
예제 #2
0
 public ConsumerScopeDecoratorWithHooks(ConsumerScope inner, Action preHook = null, Action postHook = null)
 {
     _inner    = inner;
     _preHook  = preHook;
     _postHook = postHook;
 }