Mineplex2018-withcommit/Website/LOC.Core/DependencyResolution/IoC.cs

21 lines
733 B
C#
Raw Normal View History

2013-08-27 17:14:08 +02:00
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;
}
}
}