Exemple #1
0
    public HttpResponseMessage ClearShoppingList(int shoppingListId)
    {
        var model = new ClearShoppingListEntriesInput {
            ShoppingListId = shoppingListId, InitiatorId = this.GetCurrentUserId()
        };
        var result = _shoppingListService.ClearShoppingListEntries(model);

        return(Response(result));
    }