Given: ```` public interface IBar {} public interface IFoo : IBar {} public class Foo : IFoo {} ```` What is the Extensions.Conventions equivalent of Ninject's `Bind<IFoo, IBar>.To<Foo>`
Given:
What is the Extensions.Conventions equivalent of Ninject's
Bind<IFoo, IBar>.To<Foo>