public ActionResult <Person[]> GetAll() { IQueryable <Person> persons = personDataService.GetAll(); return(Ok(persons)); }