IResolver
Represents a dependency resolver.
using System.Linq.Expressions;
namespace Stashbox.Resolution
{
public interface IResolver
{
Expression GetExpression(IResolutionStrategy resolutionStrategy, TypeInformation typeInfo, ResolutionContext resolutionContext);
bool CanUseForResolution(TypeInformation typeInfo, ResolutionContext resolutionContext);
}
}