Ejemplo n.º 1
0
        public ActionResult GetUsers()
        {
            //return Json(_users);
            TodoListContext context = HttpContext.RequestServices.GetService(typeof(TodoApp.Models.TodoListContext)) as TodoListContext;

            return(Json(context.GetAllTheUsers()));
        }
Ejemplo n.º 2
0
        public IActionResult Index()
        {
            TodoListContext context = HttpContext.RequestServices.GetService(typeof(TodoApp.Models.TodoListContext)) as TodoListContext;

            return(View(context.GetAllTheUsers()));
        }