Exemplo n.º 1
0
 public ActionResult <BeerDTO> GetItem(long id)
 {
     return(Ok(_beerService.GetOneBy(x => x.Id == id)));
 }