Esempio n. 1
0
 public AndStepInstance(ProfileInstance profileInstance, StepInstance parentStepInstance, AndStep step)
     : base(profileInstance, parentStepInstance, step)
 {
 }
Esempio n. 2
0
        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);
        }