main
1namespace MoMoney.boot.container.registration.mapping
2{
3    public interface ISourceEvaluator<Source, Result>
4    {
5        Result evaluate_against(Source source);
6    }
7}