main
1using System;
2
3namespace MoMoney.Domain.Accounting
4{
5    public interface ILedgerEntry
6    {
7        DateTime entry_date();
8    }
9}