I have created a client-based winforms application that parses a file and creates a Game object.
The plan is to have that client send the Game object to a webservice that is expecting that object type. Then on the server side, I would use Entity-Framework 4 to persist that information.
Essentially, that Game object is just a POCO/Model class.
How would I set things up on the server side so my application exposes a service and furthermore expects that type of object.
Thank you.
*snip* Scratch that, it wasn't what I needed.