Exemplo n.º 1
0
 public static IPoolsBuilder WithCommandHandler <TCommandHandler, TCommand>(this IPoolsBuilder builder)
     where TCommandHandler : class, IHandleCommand <TCommand>
     where TCommand : ICommand => new PoolsCommandDecorator <TCommandHandler, TCommand>(builder);
Exemplo n.º 2
0
 public PoolsDecorator(IPoolsBuilder builder)
 {
     _builder = builder;
 }
Exemplo n.º 3
0
 public PoolsCommandDecorator(IPoolsBuilder builder)
     : base(builder)
 {
 }