main
1using System.Collections.Generic;
2
3namespace jive
4{
5 public interface DependencyRegistry
6 {
7 Contract get_a<Contract>();
8 IEnumerable<Contract> get_all<Contract>();
9 }
10}