Several property injections removed from Mvc artifacts and base classes
This commit is contained in:
@@ -1,7 +1,11 @@
|
||||
using System;
|
||||
using Umbraco.Core;
|
||||
using System.Collections.Specialized;
|
||||
using Umbraco.Core.Cache;
|
||||
using Umbraco.Core.Logging;
|
||||
using Umbraco.Core.Models.PublishedContent;
|
||||
using Umbraco.Core.Persistence;
|
||||
using Umbraco.Core.Services;
|
||||
|
||||
namespace Umbraco.Web.Mvc
|
||||
{
|
||||
@@ -12,6 +16,16 @@ namespace Umbraco.Web.Mvc
|
||||
[MergeParentContextViewData]
|
||||
public abstract class SurfaceController : PluginController
|
||||
{
|
||||
// fixme - delete?
|
||||
protected SurfaceController()
|
||||
{
|
||||
}
|
||||
|
||||
protected SurfaceController(UmbracoContext umbracoContext, IUmbracoDatabaseFactory databaseFactory, ServiceContext services, CacheHelper applicationCache, ILogger logger, ProfilingLogger profilingLogger)
|
||||
: base(umbracoContext, databaseFactory, services, applicationCache, logger, profilingLogger)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Redirects to the Umbraco page with the given id
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user