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

            return(Json(store.All()));
        }