Beispiel #1
0
 public async Task <ActionResult <ShoppingListItemDTO> > CreateShoppingListItem([FromBody] CreateShoppingListItemCommand shoppingListItem)
 {
     return(Created(Url.ToString(), await _shoppingListService.CreateShoppingListItem(shoppingListItem)));
 }