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