Created
March 12, 2012 23:27
-
-
Save hvitorino/2025395 to your computer and use it in GitHub Desktop.
controller nancy
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
| public class Servicos : NancyModule | |
| { | |
| public Servicos() | |
| { | |
| Get[ "/servicos" ] = parms => Response.AsJson(new List<object> | |
| { | |
| new { id = 1, nome = "Desenvolvimento" }, | |
| new { id = 2, nome = "Consultoria" } | |
| }); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment