public void Put([FromBody] Smoothie smoothie)
 {
     _repo.Update(smoothie);
 }
Exemple #2
0
 public Smoothie Put([FromBody] Smoothie smoothie)
 {
     return(_repo.Update(smoothie));
 }