示例#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)
 {
 }
 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;
 }