예제 #1
0
 public DisposableDecorator(IDecoratedService decorated)
     : base(decorated)
 {
 }
예제 #2
0
 public DecoratorWithContextB(IDecoratedService decorated, IDecoratorContext context)
     : base(decorated)
 {
     this.Context = context;
 }
예제 #3
0
 public DecoratorWithParameter(IDecoratedService decorated, string parameter)
     : base(decorated)
 {
     this.Parameter = parameter;
 }
예제 #4
0
 protected Decorator(IDecoratedService decorated)
 {
     Decorated = decorated;
 }
예제 #5
0
 public DecoratorB(IDecoratedService decorated)
     : base(decorated)
 {
 }
예제 #6
0
 public DecoratedServiceDecorator( IDecoratedService decorated )
 {
     m_decorated = decorated;
 }
예제 #7
0
 public Decorator(IDecoratedService inner, IService injectedService = null)
 {
     Inner           = inner;
     InjectedService = injectedService;
 }
예제 #8
0
 public StringImplementor(IDecoratedService <string> decorated)
     : base(decorated)
 {
 }
예제 #9
0
 public DecoratorA(IDecoratedService <T> decorated)
     : base(decorated)
 {
 }
예제 #10
0
 public DecoratorWithContextB(IDecoratedService <T> decorated, IDecoratorContext context)
     : base(decorated)
 {
     Context = context;
 }