public IEnumerable <TodoItem> GetAllTodoItems()
        {// TODO: Remove this method later?
            IEnumerable <TodoItem> todoItems = null;

            todoItems = _todoItemService.GetAllObjects();

            return(todoItems);
        }