12345678910111213141516171819202122232425262728 |
- namespace Wayne.Lib
- {
-
-
-
- public static class ServiceContainerFactory
- {
-
-
-
-
- public static IServiceContainer Create()
- {
- return new ServiceContainer();
- }
-
-
-
-
-
-
- public static IServiceContainer Create(IServiceLocator parentServiceLocator)
- {
- return new ServiceContainer(parentServiceLocator);
- }
- }
- }
|