Пример #1
0
        public LinkedList <IStep> Build()
        {
            IStepFactory stepFactory = new StepFactory();

            var settings = new ConfigurationFactory().Get(_configFiles.Values);

            var steps = stepFactory.Get(settings);

            return(new LinkedList <IStep>(steps));
        }