I have a factory class, DocumentLoaderFactory, which simply returns an instance that implements an interface, IDocumentLoader.
All implementation resides under the following namespace
Skim.Ssms.AddIn.ActiveFileExplorer.Loader
But what I am wondering is, which namespace does DocumentLoaderFactory belong?
I have placed the factory class under the *.Loader namespace for now, but it is being used from a user control (ActiveFileWindow) of the parent namespace, Skim.Ssms.AddIn.ActiveFileExplorer as shown below.
What would be pros & cons of placing the factory method within *.Loader or it's parent namespace? I would like to make a decision depending on pros/cons.
Here is the layout of my project
