Created
December 2, 2012 04:56
-
-
Save jmarnold/4187017 to your computer and use it in GitHub Desktop.
LoFi Scenario
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 LoFiEndpoint | |
{ | |
public const string GET = "Input data"; | |
public const string SUCCESS = "Success"; | |
public LoFiInput get_lofi(LoFiInput input) | |
{ | |
// You could get fancier here and just create the GET from an actionsource | |
return input; | |
} | |
public string post_lofi(LoFiInput input) | |
{ | |
return SUCCESS; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment