Example #1
0
        public List <PersonDAO> GetAllActiveStudents()
        {
            var people = new List <PersonDAO>();

            foreach (var item in rsc.GetAllActiveStudents())
            {
                people.Add(item);
            }

            return(people);
        }