Exemplo n.º 1
0
        public void studentListCheckFact()
        {
            SchoolDatabase schoolDatabase = new SchoolDatabase();

            List <Student> listOfStudents = schoolDatabase.GetStudents();

            Assert.NotEmpty(listOfStudents);
        }
Exemplo n.º 2
0
 /// <summary>
 /// Pobranie wszystkich uczniow
 /// </summary>
 /// <returns></returns>
 public List <Student> Get()
 {
     return(schoolDS.GetStudents());
 }