I Have a Prism WPF Application using Unity as IoC-Container which contains a module called "LanguageModule":
My ShellViewModel requires a instance of this module. And my Shell requires a instance of the ShellViewModel.
But the CreateShell Method is called before my Modules are loaded. Am i doing something wrong?
Is it correct that my module adds itself to the Container (InitialzeCode:)?
container.RegisterInstance(typeof(ILanguageService), new LanguageServicePrototype());
How can i add my Language Service as a Module?