Skip to content

Instantly share code, notes, and snippets.

@wcadap
Last active August 29, 2015 14:12
Show Gist options
  • Save wcadap/faf5592ac12bf2b146ae to your computer and use it in GitHub Desktop.
Save wcadap/faf5592ac12bf2b146ae to your computer and use it in GitHub Desktop.
using Contacts.Helpers;
using Contacts.Models;
using System.Web.Mvc;
namespace Contacts.Controllers
{
public class ContactController : JsonController
{
private ContactContext ContactsDB = new ContactContext();
public ActionResult GetContacts()
{
var Contacts = ContactsDB.Contacts;
return Json(Contacts, JsonRequestBehavior.AllowGet);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment