private NamespaceAdjuster(
     Package package,
     ISolutionSelectionService solutionSelectionService,
     IInnerPathFinder innerPathFinder,
     INamespaceAdjusterOptions options)
 {
     _package = package;
     _solutionSelectionService = solutionSelectionService;
     _innerPathFinder          = innerPathFinder;
     _options = options;
 }
 public static void Initialize(
     Package package,
     ISolutionSelectionService solutionSelectionService,
     IInnerPathFinder innerPathFinder,
     INamespaceAdjusterOptions options)
 {
     Instance = new NamespaceAdjuster(
         package,
         solutionSelectionService,
         innerPathFinder,
         options);
     Instance.Initialize();
 }