Exemple #1
0
        public IActionResult GetStudentDetail(Guid studentId)
        {
            if (!_repository.StudentExists(studentId))
            {
                return(NotFound());
            }
            var studentDetail = _repository.GetStudentDetail(studentId);

            return(Ok(_mapper.Map <StudentDetailDto>(studentDetail)));
        }