Skip to content

Instantly share code, notes, and snippets.

@andrewarosario
Created November 23, 2020 10:48
Show Gist options
  • Save andrewarosario/04409c07befe206e3acd0bdce326a385 to your computer and use it in GitHub Desktop.
Save andrewarosario/04409c07befe206e3acd0bdce326a385 to your computer and use it in GitHub Desktop.
@Component({
selector: 'app-venda-listagem',
templateUrl: './venda-listagem.component.html',
styleUrls: ['./venda-listagem.component.css']
})
export class VendaListagemComponent {
constructor(private vendaService: VendaService) {}
ngOnInit() {
this.vendaService.listar();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment