summaryrefslogtreecommitdiff
path: root/code/common/DependencyRegistry.cs
blob: b3b756957879a17f97218f90a688f118a1970fb8 (plain)
1
2
3
4
5
6
7
8
9
10
using System.Collections.Generic;

namespace common
{
    public interface DependencyRegistry
    {
        T get_a<T>();
        IEnumerable<T> get_all<T>();
    }
}