I am tring to use Ninject as a IoC container but could not understand how to create an instance of a class that has more than 1 parameter in the constructor. Basically I have a
Ninject can inject more than one constructor arguments like:
Bind().To().InSingletonScope() .WithConstructorArgument("customerName", "Daenerys Targeryan") .WithConstructorArgument("customerAddress", "King's Landing");
It does not change how the binding works.