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