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