Further rearranging IView/IViewEngine/ViewContext et al
This commit is contained in:
parent
4feb8f4f28
commit
084c7f80e5
|
|
@ -1,6 +1,6 @@
|
|||
using System.Threading.Tasks;
|
||||
|
||||
namespace Microsoft.AspNet.Mvc.Rendering
|
||||
namespace Microsoft.AspNet.Mvc
|
||||
{
|
||||
public interface IView
|
||||
{
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace Microsoft.AspNet.Mvc.Rendering
|
||||
namespace Microsoft.AspNet.Mvc
|
||||
{
|
||||
public interface IViewEngine
|
||||
{
|
||||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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
|
||||
{
|
||||
|
|
@ -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>
|
||||
{
|
||||
|
|
@ -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
|
||||
{
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace Microsoft.AspNet.Mvc.Rendering
|
||||
namespace Microsoft.AspNet.Mvc
|
||||
{
|
||||
public class ViewEngineResult
|
||||
{
|
||||
Loading…
Reference in New Issue