using System; namespace MediaBrowser.Common { public interface IDependencyContainer { void RegisterSingleInstance(T obj, bool manageLifetime = true) where T : class; void RegisterSingleInstance(Func func) where T : class; void Register(Type typeInterface, Type typeImplementation); } }