mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-23 21:13:35 +08:00
Correcting some namespaces preparing for admin story
Orchard.Mvc.Filters contains base implementations, not specific functionality Orchard.Mvc.AntiForgery and Orchard.UI.Admin contain specific functionality --HG-- branch : dev
This commit is contained in:
@@ -15,7 +15,6 @@ using Orchard.UI.Notify;
|
||||
namespace Orchard.Blogs.Controllers {
|
||||
[UsedImplicitly]
|
||||
public class BlogPostDriver : ContentItemDriver<BlogPost> {
|
||||
private readonly IBlogService _blogService;
|
||||
private readonly IBlogPostService _blogPostService;
|
||||
private readonly IRoutableService _routableService;
|
||||
private readonly IOrchardServices _orchardServices;
|
||||
@@ -26,7 +25,6 @@ namespace Orchard.Blogs.Controllers {
|
||||
};
|
||||
|
||||
public BlogPostDriver(IBlogService blogService, IBlogPostService blogPostService, IRoutableService routableService, IOrchardServices orchardServices) {
|
||||
_blogService = blogService;
|
||||
_blogPostService = blogPostService;
|
||||
_routableService = routableService;
|
||||
_orchardServices = orchardServices;
|
||||
|
Reference in New Issue
Block a user