This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| try { | |
| const resultadoBanco = realizarChamadaAoBancoDeDados(); | |
| if (resultadoBanco.length === 0) { | |
| throw new Error("Nenhum resultado encontrado no banco de dados."); | |
| } | |
| const dadosProcessados = processarDados(resultadoBanco); | |
| console.log("Dados processados:", dadosProcessados); | |
| } catch (erro) { | |
| console.error("Erro na chamada do banco de dados:", erro.message); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <mat-toolbar color="primary"> | |
| <mat-toolbar-row> | |
| <button mat-icon-button> | |
| <mat-icon (click)="sidenav.toggle()">menu</mat-icon> | |
| </button> | |
| <h1>SimpleCRM</h1> | |
| <span class="menu-spacer"></span> | |
| <div> | |
| <a mat-button [routerLink]="'/accounts'"> Accounts </a> | |
| <a mat-button [routerLink]="'/create-account'"> Create Account </a> |