AutoMapProperty/AutoMapPropertyHelper/IAutomappedAttribute.cs
honzapatCZ dae65b42e5 init
2023-03-14 20:46:34 +01:00

17 lines
373 B
C#

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