Exemplo n.º 1
0
 // GET: TodoList
 public async Task <ActionResult> Index()
 {
     TempData["SignedInUser"] = User.GetDisplayName();
     return(View(await _todoListService.GetAsync()));
 }
 public async Task <ActionResult> Index()
 {
     return(View(await _todoListService.GetAsync()));
 }