unity

Microsoft Unity. How to specify a certain parameter in constructor?

Hi, I'm using Microsoft Unity. I have an interface ICustomerService and its implementation CustomerService. I can register them for the Unity container using the following code: container.RegisterType<ICustomerService, CustomerService>(new TransientLifetimeManager()); If CustomerService has a certain parameter in its constructor (e.g...