main
1namespace presentation.windows.server.domain.accounting
2{
3    public interface PotentialEntry
4    {
5        Quantity combined_with(Quantity other);
6        void commit();
7    }
8}