From 8a1c8475b8ec68d113c79dbab3a4519612bad701 Mon Sep 17 00:00:00 2001 From: Elijah Date: Sun, 13 Feb 2011 22:54:51 -1100 Subject: [PATCH] Update Interfaces BaseContext --- umbraco.MacroEngines.Juno/BaseContext.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/umbraco.MacroEngines.Juno/BaseContext.cs b/umbraco.MacroEngines.Juno/BaseContext.cs index c756fd041f..b0315d04f7 100644 --- a/umbraco.MacroEngines.Juno/BaseContext.cs +++ b/umbraco.MacroEngines.Juno/BaseContext.cs @@ -10,11 +10,11 @@ namespace umbraco.MacroEngines private MacroModel _macro; private INode _node; protected T CurrentModel; - protected ParameterDictionary ParameterDictionary; - protected CultureDictionary CultureDictionary; + protected IParameterDictionary ParameterDictionary; + protected ICultureDictionary CultureDictionary; - public ParameterDictionary Parameter { get { return ParameterDictionary; } } - public CultureDictionary Dictionary { get { return CultureDictionary; } } + public IParameterDictionary Parameter { get { return ParameterDictionary; } } + public ICultureDictionary Dictionary { get { return CultureDictionary; } } public MacroModel Macro { get { return _macro; } } public INode Node { get { return _node; } } @@ -28,8 +28,8 @@ namespace umbraco.MacroEngines if (node == null) throw new ArgumentNullException("node"); _macro = macro; - ParameterDictionary = new ParameterDictionary(macro.Properties); - CultureDictionary = new CultureDictionary(); + ParameterDictionary = new UmbracoParameterDictionary(macro.Properties); + CultureDictionary = new UmbracoCultureDictionary(); _node = node; }