public void GetStudents()
        {
            // Arrange:
            List <Person> mockPeople = _dataFactory.GetMockPersons();

            // Act:
            List <StudentDTO> students = _service.GetStudents();

            // Assert:
            Assert.AreEqual(mockPeople.Count, students.Count);
        }
 public List <StudentDTO> GetStudents()
 {
     return(_studentService.GetStudents());
 }