main
 1using System.Collections;
 2
 3namespace gorilla.commons.utility
 4{
 5    public class SingletonScopedStorage : IScopedStorage
 6    {
 7        static readonly IDictionary storage = new Hashtable();
 8
 9        public IDictionary provide_storage()
10        {
11            return storage;
12        }
13    }
14}