AppActs.Client.WebSite.InstallService.Install C# (CSharp) Method

Install() public method

public Install ( Castle container, Castle store ) : void
container Castle
store Castle
return void
        public void Install(Castle.Windsor.IWindsorContainer container, Castle.MicroKernel.SubSystems.Configuration.IConfigurationStore store)
        {
            container.Register(Component.For<IUserService>().ImplementedBy<UserService>());
            container.Register(Component.For<IApplicationService>().ImplementedBy<ApplicationService>());
            container.Register(Component.For<IReportService>().ImplementedBy<ReportService>());
            container.Register(Component.For<IEmailService>().ImplementedBy<EmailService>());
            container.Register(Component.For<ITileService>().ImplementedBy<TileService>());
        }
InstallService