Further rearranging IView/IViewEngine/ViewContext et al

This commit is contained in:
Ryan Nowak 2014-04-07 18:28:08 -07:00
parent 4feb8f4f28
commit 084c7f80e5
11 changed files with 8 additions and 7 deletions

View File

@ -1,6 +1,6 @@
using System.Threading.Tasks;
namespace Microsoft.AspNet.Mvc.Rendering
namespace Microsoft.AspNet.Mvc
{
public interface IView
{

View File

@ -1,6 +1,6 @@
using System.Collections.Generic;
namespace Microsoft.AspNet.Mvc.Rendering
namespace Microsoft.AspNet.Mvc
{
public interface IViewEngine
{

View File

@ -2,7 +2,6 @@
using System.Collections.Generic;
using System.Diagnostics.Contracts;
using System.Globalization;
using System.Globalization;
using System.Linq;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.DependencyInjection;

View File

@ -2,8 +2,9 @@ using System;
using System.Collections.Generic;
using System.IO;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.Mvc.Rendering;
namespace Microsoft.AspNet.Mvc.Rendering
namespace Microsoft.AspNet.Mvc
{
public class ViewContext
{

View File

@ -4,9 +4,10 @@ using System.Collections.Generic;
using System.Globalization;
using Microsoft.AspNet.Mvc.Core;
using Microsoft.AspNet.Mvc.ModelBinding;
using Microsoft.AspNet.Mvc.Rendering;
using Microsoft.AspNet.Mvc.Rendering.Expressions;
namespace Microsoft.AspNet.Mvc.Rendering
namespace Microsoft.AspNet.Mvc
{
public class ViewDataDictionary : IDictionary<string, object>
{

View File

@ -2,7 +2,7 @@ using System;
using Microsoft.AspNet.Mvc.Core;
using Microsoft.AspNet.Mvc.ModelBinding;
namespace Microsoft.AspNet.Mvc.Rendering
namespace Microsoft.AspNet.Mvc
{
public class ViewDataDictionary<TModel> : ViewDataDictionary
{

View File

@ -1,6 +1,6 @@
using System.Collections.Generic;
namespace Microsoft.AspNet.Mvc.Rendering
namespace Microsoft.AspNet.Mvc
{
public class ViewEngineResult
{