Exemple #1
0
 public IActionResult Add(Todo todo)
 {
     todoRepository.AddRow(todo);
     return(RedirectToAction("List"));
 }