Example #1
0
 public void AddMinToList(Guid shoppingListID, [FromBody] ProductAmountApiModel productAmount)
 {
     myShoppingListService.AddMinimumAmountToShoppingList(shoppingListID, productAmount.ProductId, new MeasurementAmount {
         Amount = productAmount.VolumeAmount, Type = productAmount.Type
     });
 }