main
 1namespace gorilla.commons.utility
 2{
 3    public interface Query<TOutput>
 4    {
 5        TOutput fetch();
 6    }
 7
 8    public interface Query<TInput, TOutput>
 9    {
10        TOutput fetch(TInput item);
11    }
12}