Exemplo n.º 1
0
        public ActionResult ListarPorTipo(string tipoDaTarefa)
        {
            if (tipoDaTarefa == null)
            {
                return(View("Buscar"));
            }
            var tarefas = _tarefaService.BuscarTodasPorTipo(tipoDaTarefa);

            ViewBag.Tarefas = tarefas;

            return(View("Listar"));
        }