main
1namespace momoney.database.transactions
2{
3    public interface IThread
4    {
5        T provide_slot_for<T>() where T : class, new();
6    }
7}