コード例 #1
0
        //When "All" filter command is entered,
        //The appropriate methods from console and repo classes
        //are called on to display all ToDoItems.
        private void DisplayAll()
        {
            string filterCmd = "All";

            List <ToDoItem> List = Itemrepo.GetItems(filterCmd);

            ConsoleUtil.PrintList(List);
        }