summaryrefslogtreecommitdiff
path: root/product/Boot/Modules
diff options
context:
space:
mode:
Diffstat (limited to 'product/Boot/Modules')
-rw-r--r--product/Boot/Modules/Core/LoadPresentationModulesCommand.cs4
-rw-r--r--product/Boot/Modules/Core/LoadPresentationModulesCommandSpecs.cs4
2 files changed, 4 insertions, 4 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