MvvmFramework.Samples.Uwp.Repositories.TodoListItemsRepository.RemoveTodoListItem C# (CSharp) Method

RemoveTodoListItem() public method

Removes the specified item from the todo list.
public RemoveTodoListItem ( string id ) : void
id string The ID of the todo item that is to be removed.
return void
        public void RemoveTodoListItem(string id) => TodoListItemsRepository.todoListItems.Remove(this.GetTodoListItem(id));