1 2 3 4 5
namespace Marina.Infrastructure { public interface IMapper< TIn, TOut > { TOut MapFrom( TIn input ); } }