main
1namespace gorilla.commons.utility
2{
3    public interface IContextFactory
4    {
5        IContext create_for(IScopedStorage storage);
6    }
7}