summaryrefslogtreecommitdiff
path: root/product/Boot
diff options
context:
space:
mode:
Diffstat (limited to 'product/Boot')
-rw-r--r--product/Boot/Modules/Core/LoadPresentationModulesCommand.cs4
-rw-r--r--product/Boot/Modules/Core/LoadPresentationModulesCommandSpecs.cs4
-rw-r--r--product/Boot/boot/container/registration/wire_up_the_data_access_components_into_the.cs2
-rw-r--r--product/Boot/boot/container/registration/wire_up_the_infrastructure_in_to_the.cs2
-rw-r--r--product/Boot/boot/start_the_application.cs6
5 files changed, 9 insertions, 9 deletions
diff --git a/product/Boot/Modules/Core/LoadPresentationModulesCommand.cs b/product/Boot/Modules/Core/LoadPresentationModulesCommand.cs
index a581756..07b87a1 100644
--- a/product/Boot/Modules/Core/LoadPresentationModulesCommand.cs
+++ b/product/Boot/Modules/Core/LoadPresentationModulesCommand.cs
@@ -7,9 +7,9 @@ namespace MoMoney.Modules.Core
public class LoadPresentationModulesCommand : ILoadPresentationModulesCommand
{
readonly Registry<IModule> registry;
- readonly ICommandProcessor processor;
+ readonly CommandProcessor processor;
- public LoadPresentationModulesCommand(Registry<IModule> registry, ICommandProcessor processor)
+ public LoadPresentationModulesCommand(Registry<IModule> registry, CommandProcessor processor)
{
this.registry = registry;
this.processor = processor;
diff --git a/product/Boot/Modules/Core/LoadPresentationModulesCommandSpecs.cs b/product/Boot/Modules/Core/LoadPresentationModulesCommandSpecs.cs
index 9b41286..4e982f3 100644
--- a/product/Boot/Modules/Core/LoadPresentationModulesCommandSpecs.cs
+++ b/product/Boot/Modules/Core/LoadPresentationModulesCommandSpecs.cs
@@ -15,7 +15,7 @@ namespace MoMoney.Modules.Core
context c = () =>
{
registry = the_dependency<Registry<IModule>>();
- processor = the_dependency<ICommandProcessor>();
+ processor = the_dependency<CommandProcessor>();
module = an<IModule>();
when_the(registry).is_told_to(r => r.all()).it_will_return(module);
};
@@ -24,6 +24,6 @@ namespace MoMoney.Modules.Core
static Registry<IModule> registry;
static IModule module;
- static ICommandProcessor processor;
+ static CommandProcessor processor;
}
} \ No newline at end of file
diff --git a/product/Boot/boot/container/registration/wire_up_the_data_access_components_into_the.cs b/product/Boot/boot/container/registration/wire_up_the_data_access_components_into_the.cs
index 03fa263..870b8cf 100644
--- a/product/Boot/boot/container/registration/wire_up_the_data_access_components_into_the.cs
+++ b/product/Boot/boot/container/registration/wire_up_the_data_access_components_into_the.cs
@@ -32,7 +32,7 @@ namespace MoMoney.boot.container.registration
register.transient<IUnitOfWorkFactory, UnitOfWorkFactory>();
register.transient<ISessionFactory, SessionFactory>();
register.transient<IChangeTrackerFactory, ChangeTrackerFactory>();
- register.transient<IStatementRegistry, StatementRegistry>();
+ register.transient<DatabaseCommandRegistry, ObjectDatabaseCommandRegistry>();
register.transient<IConnectionFactory, ConnectionFactory>();
register.transient<IConfigureDatabaseStep, ConfigureDatabaseStep>();
register.transient<IConfigureObjectContainerStep, ConfigureObjectContainerStep>();
diff --git a/product/Boot/boot/container/registration/wire_up_the_infrastructure_in_to_the.cs b/product/Boot/boot/container/registration/wire_up_the_infrastructure_in_to_the.cs
index b685e11..f4bd5e8 100644
--- a/product/Boot/boot/container/registration/wire_up_the_infrastructure_in_to_the.cs
+++ b/product/Boot/boot/container/registration/wire_up_the_infrastructure_in_to_the.cs
@@ -49,7 +49,7 @@ namespace MoMoney.boot.container.registration
registry.transient<ICommandPump, CommandPump>();
registry.transient<ICommandFactory, CommandFactory>();
registry.transient<ISynchronizationContextFactory, SynchronizationContextFactory>();
- registry.singleton<ICommandProcessor, AsynchronousCommandProcessor>();
+ registry.singleton<CommandProcessor, AsynchronousCommandProcessor>();
}
}
} \ No newline at end of file
diff --git a/product/Boot/boot/start_the_application.cs b/product/Boot/boot/start_the_application.cs
index 12280da..8a502a6 100644
--- a/product/Boot/boot/start_the_application.cs
+++ b/product/Boot/boot/start_the_application.cs
@@ -10,13 +10,13 @@ namespace MoMoney.boot
{
readonly IBackgroundThread thread;
readonly ILoadPresentationModulesCommand command;
- readonly ICommandProcessor processor;
+ readonly CommandProcessor processor;
public start_the_application(IBackgroundThread thread)
- : this(thread, Lazy.load<ILoadPresentationModulesCommand>(), Lazy.load<ICommandProcessor>()) {}
+ : this(thread, Lazy.load<ILoadPresentationModulesCommand>(), Lazy.load<CommandProcessor>()) {}
public start_the_application(IBackgroundThread thread, ILoadPresentationModulesCommand command,
- ICommandProcessor processor)
+ CommandProcessor processor)
{
this.thread = thread;
this.command = command;