Exemplo n.º 1
0
Arquivo: Step.cs Projeto: zjwps/zjwLib
        public Step NewStart()
        {
            var t = new StartStep();

            steps.Add(t);
            return(t);
        }
Exemplo n.º 2
0
Arquivo: Step.cs Projeto: zjwps/zjwLib
        public Step NewStartThen(Step step)
        {
            var t = new StartStep();

            steps.Add(t);
            t.Then(step);
            return(step);
        }