Completed initial implementation of Theme Editor

This commit is contained in:
Ben
2015-06-26 21:54:20 +01:00
parent 71ad5f2d05
commit 5b4c622345
8 changed files with 159 additions and 21 deletions

View File

@@ -13,6 +13,11 @@ namespace Filtration.ThemeEditor.WindsorInstallers
Component.For<IThemePersistenceService>()
.ImplementedBy<ThemePersistenceService>()
.LifeStyle.Singleton);
container.Register(
Component.For<IThemeService>()
.ImplementedBy<ThemeService>()
.LifeStyle.Singleton);
}
}
}