Exemplo n.º 1
0
 public string Atualizar(int id, string nome)
 {
     try {
         return(_projetosService.AtualizarProjeto(id, nome).ToString());
     } catch (Exception ex) {
         _logService.Add(ex.ToString());
         return(Resposta.Erro.ToString());
     }
 }