10 lines
202 B
C#

using System;
namespace VContainer
{
public interface IInjectParameter
{
bool Match(Type parameterType, string parameterName);
object GetValue(IObjectResolver resolver);
}
}