Fixing typo

--HG--
branch : 1.x
This commit is contained in:
Sebastien Ros
2012-01-27 17:47:41 -08:00
parent 8b83f79ca6
commit 05d740ef11
2 changed files with 3 additions and 3 deletions

View File

@@ -9,13 +9,13 @@ namespace Orchard.Mvc.Routes {
public class RoutePublisher : IRoutePublisher {
private readonly RouteCollection _routeCollection;
private readonly ShellSettings _shellSettings;
private readonly WorkContextAccessor _workContextAccessor;
private readonly IWorkContextAccessor _workContextAccessor;
private readonly IRunningShellTable _runningShellTable;
public RoutePublisher(
RouteCollection routeCollection,
ShellSettings shellSettings,
WorkContextAccessor workContextAccessor,
IWorkContextAccessor workContextAccessor,
IRunningShellTable runningShellTable) {
_routeCollection = routeCollection;
_shellSettings = shellSettings;

View File

@@ -17,7 +17,7 @@ namespace Orchard.Mvc.Routes {
private readonly IRunningShellTable _runningShellTable;
private readonly UrlPrefix _urlPrefix;
public ShellRoute(RouteBase route, ShellSettings shellSettings, WorkContextAccessor workContextAccessor, IRunningShellTable runningShellTable) {
public ShellRoute(RouteBase route, ShellSettings shellSettings, IWorkContextAccessor workContextAccessor, IRunningShellTable runningShellTable) {
_route = route;
_shellSettings = shellSettings;
_runningShellTable = runningShellTable;