using System; using System.Collections.Generic; using System.Linq.Expressions; using System.Text; namespace AutoMapPropertyHelper { public interface IAutomappedAttribute { public TSource ApplyTo(TSource value); public TSelf ApplyFrom(TSource source); public Expression> GetProjectorFrom(); } }