public AndStepInstance(ProfileInstance profileInstance, StepInstance parentStepInstance, AndStep step) : base(profileInstance, parentStepInstance, step) { }
private StepInstance CreateStepInstance(Profile profile, ProfileCounters counters, StepInstance parentStepInstance, AndStep step) { var stepInstance = new AndStepInstance(this, parentStepInstance, step); CreateChildStepInstances(stepInstance, step, profile, counters); return(stepInstance); }