Exemplo n.º 1
0
 public Enumeration After(AfterMethodAction after)
 {
     foreach (var method in methods)
     {
         method.After(after);
     }
     return(this);
 }
Exemplo n.º 2
0
 public MethodEnumeration After(AfterMethodAction after)
 {
     foreach (Amendment.Method method in this)
     {
         method.AfterMethod = after.Method;
     }
     return(this);
 }
Exemplo n.º 3
0
 public Context <TContext> After(AfterMethodAction after)
 {
     method.AfterMethod = after.Method;
     return(this);
 }