IResolutionContext
Represents the public context of a resolution call.
using System;
namespace Stashbox.Resolution
{
public interface IResolutionContext
{
object GetDependencyOverrideOrDefault(Type dependencyType);
TResult GetDependencyOverrideOrDefault<TResult>();
}
}