Parameter based bindings in ninject 2.0
- by Przemaas
I want to use conditional binding in ninject, based on passed parameters. I have something like below:
public class Subject
{
}
public interface ITarget
{
}
public class Target1 : ITarget
{
}
public class Target2 : ITarget
{
}
And now I need to instantiate ITarget interface:
public void MethodName(IKernel kernel)
{
ITarget…