Ejemplo n.º 1
0
 public Command(
     string directoryPath,
     string keyword,
     IOutputModifiedFunctions output)
 {
     this.directoryPath = directoryPath;
     this.keyword       = keyword;
     this.output        = output;
 }
Ejemplo n.º 2
0
 public ParseSourceCodeService(
     ITextFileReader textFileReader,
     IOutputModifiedFunctions output,
     IParserFactory parserFactory)
 //IModifiedBlockDetector modificationDetector)
 {
     this.textFileReader = textFileReader;
     this.output         = output;
     this.sourceFactory  = new SourceCodeFactory(textFileReader, parserFactory);
 }