main
1namespace MoMoney.boot.container.registration.mapping
2{
3    public interface ITargetAction<Target, ValueType>
4    {
5        void act_against(Target destination, ValueType value);
6    }
7}