diff options
Diffstat (limited to 'product/Boot/boot/start_the_application.cs')
| -rw-r--r-- | product/Boot/boot/start_the_application.cs | 6 |
1 files changed, 3 insertions, 3 deletions
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; |
