Skip to content

Instantly share code, notes, and snippets.

@andrebaltieri
Created September 22, 2014 23:33
Show Gist options
  • Save andrebaltieri/6bad1a1a44a2bd78e807 to your computer and use it in GitHub Desktop.
Save andrebaltieri/6bad1a1a44a2bd78e807 to your computer and use it in GitHub Desktop.
using Microsoft.AspNet.Mvc;
using System.Collections.Generic;
public class CustomerController : Controller
{
public JsonResult Get()
{
List<Customer> customers = new List<Customer>();
customers.Add(new Customer(1, "André", "Baltieri"));
return Json(customers);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment