diff options
Diffstat (limited to 'product/Boot/boot')
3 files changed, 5 insertions, 5 deletions
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; |
