Skip to content

Instantly share code, notes, and snippets.

@jmarnold
Created December 2, 2012 04:56
Show Gist options
  • Save jmarnold/4187017 to your computer and use it in GitHub Desktop.
Save jmarnold/4187017 to your computer and use it in GitHub Desktop.
LoFi Scenario
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