public IActionResult AddCard(ToDoItem entity) { entity.isValid = true; _toDoItemService.Create(entity); return(RedirectToAction("Index")); }