Replaced AutoMapper usage for ItemFilterBlockGroup viewmodel mapping with constructor overload

Updated NuGet packages
This commit is contained in:
Ben Wallis
2017-05-09 21:41:51 +01:00
parent 733c7d1757
commit 3fe021949a
36 changed files with 676 additions and 363 deletions

View File

@@ -2,7 +2,6 @@
using Castle.MicroKernel.SubSystems.Configuration;
using Castle.Windsor;
using Filtration.Services;
using Filtration.Utilities;
namespace Filtration.WindsorInstallers
{
@@ -20,11 +19,6 @@ namespace Filtration.WindsorInstallers
.ImplementedBy<StaticDataService>()
.LifeStyle.Singleton);
container.Register(
Component.For<IBlockGroupMapper>()
.ImplementedBy<BlockGroupMapper>()
.LifeStyle.Singleton);
container.Register(
Component.For<IHTTPService>()
.ImplementedBy<HTTPService>()