示例#1
0
        public async Task <IActionResult> GetStudent(int id)
        {
            var student = await _repo.GetStudent(id);

            var studentToReturn = _mapper.Map <StudentForDetailedDto>(student);

            return(Ok(studentToReturn));
        }