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