2013-08-12 15:06:12 +02:00
|
|
|
|
using AutoMapper;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Core.Models.Mapping
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Used to declare a mapper configuration
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <remarks>
|
|
|
|
|
|
/// Use this class if your mapper configuration isn't also explicitly an ApplicationEventHandler.
|
|
|
|
|
|
/// </remarks>
|
|
|
|
|
|
internal abstract class MapperConfiguration : ApplicationEventHandler, IMapperConfiguration
|
|
|
|
|
|
{
|
|
|
|
|
|
public abstract void ConfigureMappings(IConfiguration config, ApplicationContext applicationContext);
|
|
|
|
|
|
}
|
2013-07-01 14:23:56 +10:00
|
|
|
|
}
|