Hi,
I have a WCF service that my console application consumes. The proxy class is generated which uses the console application namespace.
The DataAccess layer has a method GetItems which requires a ITEM object which belongs to a different namespace. Is there anyway to tell WCF to create the items which belong in a certain namespace and not use the client project to create the namespace!
UPDATE
Here is the problem:
// The following namespace belongs in the class library project
MYProject.Something.Foo foo = new Foo();
foo.Text = "hello world";
// Now the webservice has a method ProcessFoo but the proxy
// class shows something like this:
ProcessFoo(MyClientProject.Something.foo);
I cannot send my MYProject.Something.Foo to ProcessFoo method.