public IActionResult Todas(int id) { ViewBag.Tarefas = _tarefaRepository.ObterPorProjeto(id); var projeto = _projetoRepository.ObterPorId(id); ViewBag.Projeto = projeto; ViewBag.Equipe = _projetoRepository.UsuariosRelacionadasAoProjeto(projeto); return(View()); }