예제 #1
0
        public static IAnalyzeCommand CreateCommand(AnalyzeType commandType, WorkingDirectory workingDirectory)
        {
            if (!Dictionary.ContainsKey(commandType))
            {
                throw new NotImplementedException();
            }

            return Dictionary[commandType](workingDirectory);
        }
예제 #2
0
 public AnalysisService(WorkingDirectory directory)
 {
     this.directory = directory;
 }