Example #1
0
        public Table GetQuery(string data)
        {
            List<Person> people = (from p in dataBase
                                   select p).ToList();
            Table table = new Table();
            table.InitalizeTable(people);

            return table;
        }