summaryrefslogtreecommitdiff
path: root/product/database/transactions/IDatabase.cs
blob: 4401e647158b6bd32dd0e7c40c67d2aaff987c23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using System.Collections.Generic;
using gorilla.commons.utility;

namespace momoney.database.transactions
{
    public interface IDatabase
    {
        IEnumerable<T> fetch_all<T>() where T : Identifiable<Guid>;
        void apply(DatabaseCommand command);
    }
}