ProcessSolution() public method

public ProcessSolution ( ) : string
return string
        private void btnRender_Click(object sender, RoutedEventArgs e)
        {
            var processor = new QuickGraphProcessor(_currentSolution);
            Compose(processor);
            string filename = processor.ProcessSolution();

            var graphViz = new GraphVizService();
            graphViz.ExecGraphViz(filename, tbOutputFilename.Text);

            Process.Start(tbOutputFilename.Text);
        }