public static void ImportPeople() { var json = File.ReadAllText("../../../datasets/people.json"); var people = JsonConvert.DeserializeObject <IEnumerable <PersonDto> >(json); PersonStore.AddPeople(people); }