public IActionResult Update([FromBody] Todo todo) { if (ModelState.IsValid) { _todos.Update(todo.Id, todo); } return(Ok(todo)); }