Ejemplo n.º 1
0
 public ChainLink(Func <TValue, bool> action, ChainLink <TValue> next)
     : this(new GenericChainAction <TValue>(action), next)
 {
 }
Ejemplo n.º 2
0
 public ChainLink(IChainAction <TValue> action, ChainLink <TValue> next)
 {
     _next   = next;
     _action = action;
 }