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)); }