public async Task <ActionResult> IndexAsync()
        {
            var items = await TodoItemService.GetOpenItemsAsync();

            return(View(items));
        }