Obsoleted umbraco.businesslogic.ApplicationTree, have moved logic and new classes to core and proxied calls from it to the new ones. The new ApplicationTreeCollection will be the runtime colleciton of trees which can also read/write/save to the xml.

This commit is contained in:
Shannon
2013-06-20 10:05:51 +10:00
parent 2650740fa7
commit 24111c52f2
16 changed files with 466 additions and 287 deletions

View File

@@ -0,0 +1,15 @@
using AutoMapper;
namespace Umbraco.Core
{
/// <summary>
/// Helper class for static model mapping with automapper
/// </summary>
internal static class ModelMapperHelper
{
internal static IMappingExpression<TSource, TSource> SelfMap<TSource>()
{
return Mapper.CreateMap<TSource, TSource>();
}
}
}