Data.FakeService.GetPeople C# (CSharp) Метод

GetPeople() публичный статический Метод

public static GetPeople ( ) : List
Результат List
        public static List<Person> GetPeople()
        {
            Debug.WriteLine("GET for people.");
            return new List<Person>()
                {
                    new Person() { Name="Chris Cole", Age=10 },
                    new Person() { Name="Kelly Kale", Age=32 },
                    new Person() { Name="Dylan Durbin", Age=18 }
                };
        }