public IActionResult Add(TodoItem todoItem) { TodoAppService.Add(todoItem); return(View("Index", TodoAppService.GetAll())); }