Method | Description | |
---|---|---|
CreateTodoListItem ( string title, string description ) : |
Adds a new item to the todo list.
|
|
GetTodoListItem ( string id ) : |
Gets the specified todo list item.
|
|
GetTodoListItems ( ) : IEnumerable |
Gets all available todo list items.
|
|
MarkTodoListItemAsFinished ( string id ) : void |
Marks the specified todo list item as finished.
|
|
RemoveTodoListItem ( string id ) : void |
Removes the specified item from the todo list.
|
public CreateTodoListItem ( string title, string description ) : |
||
title | string | The title of the new todo list item. |
description | string | The description of the new todo list item. |
return |
public GetTodoListItem ( string id ) : |
||
id | string | The ID of the todo list item that is to be retrieved. |
return |
public MarkTodoListItemAsFinished ( string id ) : void | ||
id | string | The ID of the todo list item that is to be marked as finished. |
return | void |
public RemoveTodoListItem ( string id ) : void | ||
id | string | The ID of the todo item that is to be removed. |
return | void |