示例#1
0
 public async Task <IActionResult> Get(long id)
 {
     return(Ok(mapper.Map <MoviePerson, MoviePersonViewModel>(await service.Get(id))));
 }