main
1namespace gorilla.commons.utility
2{
3    public interface Factory<T>
4    {
5        T create();
6    }
7}