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:
Louis DeJardin
2010-02-25 23:45:37 -08:00
parent 691908fb48
commit 09be861aaf
6 changed files with 10 additions and 11 deletions

View File

@@ -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;