public IEnumerable <Person> Get() { return(store.All()); }
public ActionResult AllPeople() { PersonDataStore store = new PersonDataStore(); return(Json(store.All())); }