Ejemplo n.º 1
0
        public ActionResult Users()
        {
            TodoListContext context = HttpContext.RequestServices.GetService(typeof(TodoApp.Models.TodoListContext)) as TodoListContext;

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

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