public IActionResult ListagemProjetos() { //string url = "http://localhost:64154/api/Projeto/ListarTodos"; //WebClient client = new WebClient(); //byte[] dataApiByte = client.DownloadData(url); //ViewBag.Projeto = Enc ViewBag.Projeto = _projetoDAO.ListarTodos(); return(View()); }
public IActionResult Cadastrar() { ViewBag.Projetos = new SelectList (_projetoDAO.ListarTodos(), "ProjetoId", "Nome"); ViewBag.Requisitante = new SelectList (_funcionarioDAO.ListarTodos(), "PessoaId", "Nome"); ViewBag.Assinatura = new SelectList (_funcionarioDAO.ListarTodos(), "PessoaId", "Nome"); return(View()); }
public IActionResult ListarTodos() { return(Ok(_projetoDAO.ListarTodos())); }