2012-08-17 04:27:47 +06:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Core.Dynamics
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// This exists only because we want Dynamics in the Core project but DynamicNode has references to ContentType to run some queries
|
|
|
|
|
/// and currently the business logic part of Umbraco is still in the legacy project and we don't want to move that to the core so in the
|
|
|
|
|
/// meantime until the new APIs are made, we need to have this data source in place with a resolver which is set in the web project.
|
|
|
|
|
/// </summary>
|
2012-10-02 22:51:53 +05:00
|
|
|
internal interface IDynamicPublishedContentDataSource
|
2012-08-17 04:27:47 +06:00
|
|
|
{
|
2012-08-20 09:11:14 +06:00
|
|
|
Guid GetDataType(string docTypeAlias, string propertyAlias);
|
2012-09-20 12:42:43 +07:00
|
|
|
|
2012-08-17 04:27:47 +06:00
|
|
|
}
|
|
|
|
|
}
|