15 lines
329 B
C#
15 lines
329 B
C#
using Castle.MicroKernel.Registration;
|
|
using Castle.MicroKernel.SubSystems.Configuration;
|
|
using Castle.Windsor;
|
|
|
|
namespace Filtration.WindsorInstallers
|
|
{
|
|
public class ModelsInstaller : IWindsorInstaller
|
|
{
|
|
public void Install(IWindsorContainer container, IConfigurationStore store)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|