main
1using System;
2using System.Linq.Expressions;
3
4namespace MoMoney.boot.container.registration.mapping
5{
6 public interface IMappingStepFactory
7 {
8 IMappingStep<Source, Destination> create_mapping_step_for<Source, Destination, PropertyType>(
9 Expression<Func<Source, PropertyType>> source_expression,
10 Expression<Func<Destination, PropertyType>> destination_expression);
11 }
12}