예제 #1
0
        public ActionResult <Person[]> GetAll()
        {
            IQueryable <Person> persons = personDataService.GetAll();

            return(Ok(persons));
        }