Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Got the answer. I did the Container.Resolve<T1,T2>(new InjectionConstructor()); Thanks – isakavis Jan 15 at 14:57

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.