MvvmFramework.Samples.Uwp.Repositories.TodoListItemsRepository.GetTodoListItem C# (CSharp) 메소드

GetTodoListItem() 공개 메소드

Gets the specified todo list item.
public GetTodoListItem ( string id ) : TodoListItem
id string The ID of the todo list item that is to be retrieved.
리턴 MvvmFramework.Samples.Uwp.Models.TodoListItem
        public TodoListItem GetTodoListItem(string id) => TodoListItemsRepository.todoListItems.FirstOrDefault(item => item.Id == id);