main
 1namespace gorilla.commons.utility
 2{
 3    public class ContextFactory : IContextFactory
 4    {
 5        public IContext create_for(IScopedStorage storage)
 6        {
 7            return new Context(storage.provide_storage());
 8        }
 9    }
10}