Example #1
0
 public void ShowAllStudents()
 {
     foreach (KeyValuePair <string, Student> st in Service.GetStudents())
     {
         Console.WriteLine(st.Value.ToString());
     }
 }