Exemplo n.º 1
0
        public IEnumerable<Student> GetStudentsByClassID(int id)
        {
            ClassRepository repository = new ClassRepository();

            return repository.GetStudentsByClassID(id);
        }