diff options
| author | mo khan <mo@mokhan.ca> | 2009-10-23 13:09:04 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2009-10-23 13:09:04 -0600 |
| commit | 9a3430b2a1f0445c0dbac703907762e225383421 (patch) | |
| tree | 751d5742a199eae57ebb6d767e650bd6c803bdc3 /product/Boot/boot/start_the_application.cs | |
| parent | f76fe6ca01f3dc5fabc8bf16f299420ba9d7ef05 (diff) | |
renamed some components to something that is more descriptive.main
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; |
