final update
This commit is contained in:
20
Website/LOC.Core/DependencyResolution/IoC.cs
Normal file
20
Website/LOC.Core/DependencyResolution/IoC.cs
Normal file
@ -0,0 +1,20 @@
|
||||
namespace LOC.Core.DependencyResolution
|
||||
{
|
||||
using StructureMap;
|
||||
|
||||
public static class IoC
|
||||
{
|
||||
public static IContainer Initialize()
|
||||
{
|
||||
ObjectFactory.Initialize(
|
||||
x => x.Scan(
|
||||
scan =>
|
||||
{
|
||||
scan.TheCallingAssembly();
|
||||
scan.AssembliesFromApplicationBaseDirectory();
|
||||
scan.WithDefaultConventions();
|
||||
}));
|
||||
return ObjectFactory.Container;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user