mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
475 B
19 lines
475 B
using System;
|
|
|
|
namespace ZeroLevel.Patterns.DependencyInjection
|
|
{
|
|
public interface IContainer :
|
|
IContainerRegister,
|
|
IContainerInstanceRegister,
|
|
IResolver,
|
|
ICompositionProvider,
|
|
IParameterStorage,
|
|
IDisposable
|
|
{
|
|
bool IsResolvingExists<T>();
|
|
bool IsResolvingExists<T>(string resolveName);
|
|
bool IsResolvingExists(Type type);
|
|
bool IsResolvingExists(Type type, string resolveName);
|
|
}
|
|
}
|