コード例 #1
0
ファイル: StepInstance.cs プロジェクト: formist/LinkMe
 public AndStepInstance(ProfileInstance profileInstance, StepInstance parentStepInstance, AndStep step)
     : base(profileInstance, parentStepInstance, step)
 {
 }
コード例 #2
0
ファイル: ProfileInstance.cs プロジェクト: formist/LinkMe
        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);
        }