I have an external Web Service that returns back its own object, and I would like to get it to compile to my interfaces is this possible?
(IGetPerson)testAPI.GetPersons();
Where testAPI is the external web service
testAPI.GetPerson returns webservice.GetCarResponse, which is of course from the external webservice.
I need to get the results to fit in to my interfaces so I can use IoC
Any ideas?