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