Hi,
I am able to bind if the interface lies in the same project but if my Interfaces are in other Project then i am unable to bind them. I am using following code.
kernel.Bind(x =>
{
x.From("Leopard.Business")
.Select(type => type.Name.EndsWith("Business"))
.BindDefaultInterfaces();
x.From("Leopard.Data")
.Select(type => type.Name.EndsWith("Data"))
.BindDefaultInterfaces();
});
as long as my Interface are in same project this works but i want to move my interfaces in other project then it does not work. Plz help.