Skip to content

Commit 217f2d8

Browse files
committed
Add registration of more EncapsulateFieldRefactoring factories
1 parent 05bae54 commit 217f2d8

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Rubberduck.Main/Root/RubberduckIoCInstaller.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -411,6 +411,15 @@ private void RegisterEncapsulateFieldRefactoringFactories(IWindsorContainer cont
411411
container.Register(Component.For<IEncapsulateFieldModelFactory>()
412412
.ImplementedBy<EncapsulateFieldModelFactory>()
413413
.LifestyleSingleton());
414+
container.Register(Component.For<IEncapsulateFieldCandidateCollectionFactory>()
415+
.ImplementedBy<EncapsulateFieldCandidateCollectionFactory>()
416+
.LifestyleSingleton());
417+
container.Register(Component.For<IObjectStateUserDefinedTypeFactory>()
418+
.ImplementedBy<ObjectStateUserDefinedTypeFactory>()
419+
.LifestyleSingleton());
420+
container.Register(Component.For<IEncapsulateFieldConflictFinderFactory>()
421+
.ImplementedBy<EncapsulateFieldConflictFinderFactory>()
422+
.LifestyleSingleton());
414423
}
415424

416425

0 commit comments

Comments
 (0)