main
 1using System;
 2using System.Collections.Generic;
 3using gorilla.commons.utility;
 4
 5namespace momoney.database.transactions
 6{
 7    public interface IDatabase
 8    {
 9        IEnumerable<T> fetch_all<T>() where T : Identifiable<Guid>;
10        void apply(DatabaseCommand command);
11    }
12}