Created
January 8, 2012 04:44
-
-
Save glennblock/1577236 to your computer and use it in GitHub Desktop.
Web API - Order XHTML
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pubic class OrderApi | |
{ | |
[WebGet(UriTemplate="{id}")] | |
public XmlDocument Get(int id) { | |
var order = //get the order | |
var document = //create an XmlDocument for the order | |
return document; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment