Beispiel #1
0
 public async Task <ActionResult <Hero> > Get(Guid id)
 {
     return(Ok(await _heroesRepository.GetByIdAsync(id)));
 }