For each class I create a new instance of the web service proxy.
Main Form:
services services = new services();
services.doStuff();
New Form/Window from the Main Form:
services services = new services();
services.doStuff();
Should I be passing the first instance from the Main GUI? or does it even matter...
frmWindow window = new frmWindow(services);