mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
10 lines
361 B
C#
10 lines
361 B
C#
using System.Web.Mvc;
|
|
|
|
namespace Orchard.DisplayManagement {
|
|
/// <summary>
|
|
/// Used to create a dynamic, contextualized Display object to dispatch shape rendering
|
|
/// </summary>
|
|
public interface IDisplayHelperFactory : IDependency {
|
|
dynamic CreateHelper(ViewContext viewContext, IViewDataContainer viewDataContainer);
|
|
}
|
|
} |