public static IFlowBuilder Then <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, TResult>(this IFlowBuilder self, Func <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, TResult> todo) { self.AddStep(todo); return(self); }
public static IFlowBuilder Then <T1, T2, T3, T4, T5, TResult>(this IFlowBuilder self, Func <T1, T2, T3, T4, T5, TResult> todo) { self.AddStep(todo); return(self); }
public static IFlowBuilder Then <T1, T2, T3, T4, T5, T6, T7>(this IFlowBuilder self, Action <T1, T2, T3, T4, T5, T6, T7> todo) { self.AddStep(todo); return(self); }
public static IFlowBuilder Then <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>(this IFlowBuilder self, Action <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15> todo) { self.AddStep(todo); return(self); }
public static IFlowBuilder Then <T1, T2>(this IFlowBuilder self, Action <T1, T2> todo) { self.AddStep(todo); return(self); }