diff options
Diffstat (limited to 'product/database/transactions/IThread.cs')
| -rw-r--r-- | product/database/transactions/IThread.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/product/database/transactions/IThread.cs b/product/database/transactions/IThread.cs new file mode 100644 index 0000000..7ac0edf --- /dev/null +++ b/product/database/transactions/IThread.cs @@ -0,0 +1,7 @@ +namespace momoney.database.transactions +{ + public interface IThread + { + T provide_slot_for<T>() where T : class, new(); + } +}
\ No newline at end of file |
