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

MarkTodoListItemAsFinished() public method

Marks the specified todo list item as finished.
public MarkTodoListItemAsFinished ( string id ) : void
id string The ID of the todo list item that is to be marked as finished.
return void
        public void MarkTodoListItemAsFinished(string id) => this.GetTodoListItem(id).IsFinished = true;