Skip to content

Instantly share code, notes, and snippets.

@wbsimms
Created August 10, 2016 21:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wbsimms/6fb70da77f5bc31f05a85da914b379da to your computer and use it in GitHub Desktop.
Save wbsimms/6fb70da77f5bc31f05a85da914b379da to your computer and use it in GitHub Desktop.
namespace CookieService.Controllers
{
public class CatalogController : Controller
{
public CatalogController()
{
}
public JsonResult EchoCatalog()
{
return Json("blah");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment