コード例 #1
0
 public ActionResult <Drink> Put(int id, [FromBody] Drink drink)
 {
     return(Ok(_drinkRepo.UpdateDrink(id, drink)));
 }