コード例 #1
0
 public ChoiceStepBuilder(IBuildableFlow sourceFlow, ChoiceBuilder <TBody> builder, Func <Integration, bool> matcher)
     : base(sourceFlow, builder, matcher)
 {
 }
コード例 #2
0
 protected BaseChoiceStepBuilder(IBuildableFlow sourceFlow, ChoiceBuilder <TBody> builder, Func <Integration, bool> matcher)
 {
     this.SourceFlow = sourceFlow ?? throw new ArgumentNullException(nameof(sourceFlow));
     this.Builder    = builder ?? throw new ArgumentNullException(nameof(builder));
     Matcher         = matcher ?? throw new ArgumentNullException(nameof(matcher));
 }