Mercurial > silverbladetech
view Stocks/Stocks.Service/IoCModule.cs @ 2:29ed98d659e9
Adding WebClientShim files
author | stevenh7776 stevenhollidge@hotmail.com |
---|---|
date | Mon, 20 Feb 2012 22:04:50 +0700 |
parents | e5d46bb6cdb0 |
children |
line wrap: on
line source
using Ninject.Modules; namespace Stocks.Service { internal class IoCModule : NinjectModule { public override void Load() { //Bind<IMessenger>().ToConstant(Messenger.Default); //Bind<IWpfApplication>().To<WpfApplication>().InSingletonScope(); //Bind<IMessageBoxService>().To<MessageBoxService>().InSingletonScope(); //Bind<IErrorService>().To<ErrorService>().InSingletonScope(); //Bind<Shell>().To<Shell>(); //Bind<ShellViewModel>().To<ShellViewModel>(); } } }