示例#1
0
 public IActionResult Add(TodoItem todoItem)
 {
     TodoAppService.Add(todoItem);
     return(View("Index", TodoAppService.GetAll()));
 }