Exemplo n.º 1
0
        public StudentDTO AddStudentToCourse(int courseId, StudentViewModel newStudent)
        {
            var student = _repo.AddStudentToCourse(courseId, newStudent);

            return(student);
        }