I am working on a WPF application that uses PRISM and for data it uses a Wcf service. I followed the example provided here below and works perfect.
http://blogs.southworks.net/gmaliandi/2011/10/using-wcf-services-in-prism-silverlight-applications/
Thanks to the author.
The question I have is since we hardcode the client in the constructor of the servicesmodule, I can't make the view model testable with a service of my choice.
public CustomerServiceAgent()
{
this.WCFServiceClient = new CustomersServiceClient(); // This line is an issue
}
If I try to use Unity to inject in the constructor of the CustomerServiceAgent the interface of CustomerServiceClient, I get an error Disambiguating multiple constructors in UnityContainer.Resolve
How can I solve this issue?
Also, I could not find a way to specify NewConstructorInjection parameter in RegisterifTypeMissing. Can it be done or I have to get the reference to the Unity Container?