public IHttpActionResult Post(int orderID, int flavorID) { var service = new OrderService(); service.AddFlavorToOrder(flavorID, orderID); return(Ok()); }