public SourceFileHandlerComponentSourceCodeHandlerAdapter(
     ITempSourceFileHandler tempSourceFileHandler,
     IFileSystem fileSystem)
 {
     _tempSourceFileHandler = tempSourceFileHandler;
     _fileSystem            = fileSystem;
 }
 public SourceFileHandlerComponentSourceCodeHandlerAdapter(ITempSourceFileHandler tempSourceFileHandler)
 {
     _tempSourceFileHandler = tempSourceFileHandler;
 }
 public SourceFileHandlerSourceCodeHandlerAdapter(ITempSourceFileHandler tempSourceFileHandler, IProjectsProvider projectsProvider)
 {
     _projectsProvider      = projectsProvider;
     _tempSourceFileHandler = tempSourceFileHandler;
 }