예제 #1
0
        public IActionResult Listar()
        {
            List <TarefaViewModel> tarefas = TarefaRepository.Listar();

            return(PartialView("_Listar", tarefas));
        }
예제 #2
0
        public IActionResult Index()
        {
            List <TarefaViewModel> tarefas = TarefaRepository.Listar();

            return(View(tarefas));
        }