diff options
Diffstat (limited to 'product/database/transactions/IDatabase.cs')
| -rw-r--r-- | product/database/transactions/IDatabase.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/product/database/transactions/IDatabase.cs b/product/database/transactions/IDatabase.cs new file mode 100644 index 0000000..433f52a --- /dev/null +++ b/product/database/transactions/IDatabase.cs @@ -0,0 +1,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(IStatement statement); + } +}
\ No newline at end of file |
