Ejemplo n.º 1
0
        private void fetchStudentData()
        {
            List <StudentInfo> Students = DbInteraction.GetAllStudentList();

            _allstudentCollection.Clear();

            foreach (StudentInfo student in Students)
            {
                _allstudentCollection.Add(student);
            }
        }