Skip to content

Instantly share code, notes, and snippets.

@AlexZeitler
Created February 16, 2012 09:06
Show Gist options
  • Save AlexZeitler/1843510 to your computer and use it in GitHub Desktop.
Save AlexZeitler/1843510 to your computer and use it in GitHub Desktop.
[WebGet(UriTemplate = "")]
public List<Customer> Get() {
return new List<Customer>()
{
new Customer() { Id = 1, Name = "ALFKI"},
new Customer() { Id = 2, Name = "WELLI"}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment