Ejemplo n.º 1
0
        public async Task <IActionResult> Index()
        {
            var model = new ToDoViewModel();

            model.todos = await _service.AsyncGetToDo();

            return(View(model));
        }